:root {
    --yellow: #FDDB5B;
    --light-yellow: #FEE58B;
    --aquamarine: #7FFFD4;
    --dark-aquamarine: #40E0D0;
    --text-color: #333;
    --light-bg: #F9F9F9;
    --white: #FFFFFF;
    --shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@font-face {
    font-family: 'Ukraina';
    src: url('fonts/ukraina.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Ukraina', 'Arial', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--light-bg);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--text-color);
    transition: color 0.3s;
}

a:hover {
    color: var(--dark-aquamarine);
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.header {
    background: linear-gradient(135deg, var(--yellow), var(--aquamarine));
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    border-bottom: 5px solid var(--dark-aquamarine);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    width: 60px;
    height: 60px;
}

.logo h1 {
    font-size: 1.8rem;
    margin: 0;
    color: var(--text-color);
}

.main-nav ul {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--dark-aquamarine);
    transition: width 0.3s;
}

.main-nav a:hover::after {
    width: 100%;
}

.hero-hexagon {
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--light-bg);
    overflow: hidden;
    position: relative;
}

.hex-container {
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.hex-item {
    width: 80%;
    height: 0;
    padding-bottom: 70%;
    position: relative;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    overflow: hidden;
    transform-style: preserve-3d;
    transform: rotateY(10deg);
    transition: transform 0.5s;
}

.hex-item:hover {
    transform: rotateY(0);
}

.hex-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hex-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(253, 219, 91, 0.7), rgba(127, 255, 212, 0.7));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
}

.hex-overlay h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hex-overlay p {
    font-size: 1.5rem;
    color: var(--white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-color);
    position: relative;
}

section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--yellow), var(--aquamarine));
    margin: 1rem auto 0;
}

.diagonal-section {
    background: linear-gradient(135deg, var(--light-bg) 50%, var(--light-yellow) 50%);
    position: relative;
    padding: 4rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text {
    padding: 2rem;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -2rem;
    right: -2rem;
    width: 100px;
    height: 100px;
    background-color: var(--yellow);
    border-radius: 50%;
    z-index: -1;
}

.wave-section {
    background-color: var(--white);
    position: relative;
    padding: 4rem 0;
}

.wave-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: var(--light-yellow);
    clip-path: polygon(0 0, 10% 50%, 20% 0, 30% 50%, 40% 0, 50% 50%, 60% 0, 70% 50%, 80% 0, 90% 50%, 100% 0, 100% 100%, 0 100%);
}

.program-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.program-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.program-card:hover {
    transform: translateY(-10px);
}

.program-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.program-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--text-color);
    font-size: 1.3rem;
}

.program-card p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-color);
}

.circle-pattern-section {
    background-color: var(--aquamarine);
    position: relative;
    padding: 4rem 0;
    overflow: hidden;
}

.circle-pattern-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: var(--yellow);
    opacity: 0.3;
}

.circle-pattern-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: var(--dark-aquamarine);
    opacity: 0.3;
}

.benefits-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    background-color: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 1;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--yellow), var(--aquamarine));
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.benefit-item h3 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.benefit-item p {
    text-align: center;
    color: var(--text-color);
}

.drop-section {
    background-color: var(--light-bg);
    position: relative;
    padding: 4rem 0;
}

.drop-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: var(--aquamarine);
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 5% 60%, 10% 100%, 15% 60%, 20% 100%, 25% 60%, 30% 100%, 35% 60%, 40% 100%, 45% 60%, 50% 100%, 55% 60%, 60% 100%, 65% 60%, 70% 100%, 75% 60%, 80% 100%, 85% 60%, 90% 100%, 95% 60%);
}

.testimonials-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.testimonial:nth-child(even) {
    flex-direction: row-reverse;
}

.testimonial img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--aquamarine);
}

.testimonial-content {
    flex: 1;
}

.testimonial h3 {
    color: var(--text-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.testimonial p {
    color: var(--text-color);
    font-style: italic;
}

.honeycomb-section {
    background-color: var(--yellow);
    position: relative;
    padding: 4rem 0;
}

.schedule-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.schedule-day {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    clip-path: polygon(5% 0, 95% 0, 100% 5%, 100% 95%, 95% 100%, 5% 100%, 0 95%, 0 5%);
}

.schedule-day::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--yellow), var(--aquamarine));
}

.schedule-day h3 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.schedule-day ul li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.schedule-day ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background-color: var(--aquamarine);
    border-radius: 50%;
}

.prism-section {
    background: linear-gradient(135deg, var(--aquamarine) 0%, var(--light-yellow) 100%);
    position: relative;
    padding: 4rem 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.5rem;
}

.contact-item {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact-item h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact-item p {
    margin-bottom: 0.5rem;
}

.contact-form {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--aquamarine);
    border-radius: 4px;
    font-family: 'Ukraina', 'Arial', sans-serif;
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(135deg, var(--yellow), var(--aquamarine));
    color: var(--text-color);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Ukraina', 'Arial', sans-serif;
    transition: transform 0.3s, box-shadow 0.3s;
    display: block;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.footer {
    background-color: #333;
    color: var(--white);
    padding: 4rem 0 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.footer-logo img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

.footer-logo p {
    margin-bottom: 0.5rem;
}

.footer h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer ul li {
    margin-bottom: 0.8rem;
}

.footer a {
    color: var(--white);
}

.footer a:hover {
    color: var(--aquamarine);
}

.footer-bottom {
    background-color: #222;
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 3rem;
}

@media (max-width: 1200px) {
    .hex-overlay h2 {
        font-size: 2.5rem;
    }
    
    .hex-overlay p {
        font-size: 1.2rem;
    }
}

@media (max-width: 992px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .main-nav ul {
        gap: 1rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-form {
        order: 1;
    }
}

@media (max-width: 768px) {
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hex-item {
        width: 90%;
    }
    
    .hex-overlay h2 {
        font-size: 2rem;
    }
    
    .hex-overlay p {
        font-size: 1rem;
    }
    
    .testimonial {
        flex-direction: column !important;
        align-items: center;
        text-align: center;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .header {
        padding: 0.5rem 0;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .logo img {
        width: 40px;
        height: 40px;
    }
    
    .content-wrapper {
        padding: 3rem 1rem;
    }
    
    section h2 {
        font-size: 2rem;
    }
    
    .hex-overlay h2 {
        font-size: 1.5rem;
    }
    
    .hex-overlay p {
        font-size: 0.9rem;
    }
}

@media (max-width: 375px) {
    .logo h1 {
        font-size: 1.2rem;
    }
    
    .main-nav a {
        font-size: 0.9rem;
    }
    
    section h2 {
        font-size: 1.8rem;
    }
    
    .hex-overlay h2 {
        font-size: 1.3rem;
    }
    
    .hex-overlay p {
        font-size: 0.8rem;
    }
    
    .program-card h3 {
        font-size: 1.1rem;
    }
    
    .testimonial img {
        width: 120px;
        height: 120px;
    }
}