:root {
    /* Yellow Theme */
    --primary-yellow: #FFC107;
    --primary-yellow-darker: #E0A800;
    --background-white: #FFFFFF;
    --footer-black: #111827;
    --text-dark: #111827;
    --text-light: #6B7280;
    --text-on-dark: #F9FAFB;
    --light-bg: #F9FAFB;
    --border-color: #E5E7EB;
    --font-family: 'Poppins', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-family); background-color: var(--background-white); color: var(--text-dark); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: 5rem 0; }
.btn { padding: 12px 28px; border-radius: 8px; font-weight: 600; font-size: 1rem; text-decoration: none; display: inline-block; border: 2px solid transparent; transition: background-color 0.3s, color 0.3s, border-color 0.3s; cursor: pointer; }
.btn-secondary { background-color: var(--text-dark); color: var(--background-white); }
.btn-secondary:hover { background-color: #374151; }
.btn-outline { background-color: transparent; border-color: var(--text-dark); color: var(--text-dark); }
.btn-outline:hover { background-color: var(--text-dark); color: var(--background-white); }

.main-header { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    z-index: 1000; 
    padding: 1rem 0; 
}
.navbar { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}
.nav-logo { 
    font-size: 1.8rem; 
    font-weight: 700; 
    color: var(--text-dark); 
    text-decoration: none; 
}
.nav-links { 
    display: flex; 
    list-style: none; 
    gap: 2rem; 
}
.nav-link a { 
    color: var(--text-dark); 
    text-decoration: none; 
    font-weight: 600; 
    transition: color 0.3s; 
    position: relative; 
    padding-bottom: 5px; 
}
.nav-link a::after { 
    content: ''; 
    position: absolute; 
    bottom: 0; 
    left: 0; 
    width: 0; 
    height: 2px; 
    background-color: var(--text-dark); 
    transition: width 0.3s ease; 
}
.nav-link a:hover::after, .nav-link a.active::after { 
    width: 100%; 
}
.hamburger-menu { 
    display: none; 
    cursor: pointer; 
    font-size: 1.5rem; 
}

.hero { 
    background-color: var(--primary-yellow); 
    padding-top: 10rem; 
    padding-bottom: 8rem; 
    color: var(--text-dark); 
    position: relative; 
}
.hero-content { 
    text-align: center; 
    max-width: 800px; 
    margin: 0 auto; 
    position: relative; 
    z-index: 1; 
}
.hero-content h1 { 
    font-size: 3.8rem; 
    font-weight: 700; 
    line-height: 1.2; 
    margin-bottom: 1rem; 
}
.hero-content p { 
    font-size: 1.2rem; 
    max-width: 650px; 
    margin: 0 auto; 
}
.wave-divider { 
    position: absolute; 
    bottom: -1px; 
    left: 0; 
    width: 100%; 
    overflow: hidden; 
    line-height: 0; 
    z-index: 2; 
}
.wave-divider svg { 
    position: relative; 
    display: block; 
    width: calc(100% + 1.3px); 
    height: 100px; 
}
.wave-divider .shape-fill { 
    fill: var(--background-white); 
}

.about-content { 
    text-align: center; 
    max-width: 800px; 
    margin: 0 auto; 
}
.about-content h2 { 
    font-size: 2.5rem; 
    color: var(--text-dark); 
    margin-bottom: 1rem; 
}
.about-content p { 
    font-size: 1.1rem; 
    color: var(--text-light); 
    line-height: 1.8; 
}

.why-us-extra { 
    background-color: var(--light-bg); 
}
.section-header { 
    text-align: center; 
    margin-bottom: 3rem; 
}
.section-header h2 { 
    font-size: 2.5rem; 
    font-weight: 700; 
    color: var(--text-dark); 
    margin-bottom: 0.5rem; 
}
.section-header p { 
    font-size: 1.1rem; 
    color: var(--text-light); 
    max-width: 600px; 
    margin: 0 auto; 
}
.why-us-extra-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 2rem; 
    text-align: center; 
}
.why-us-extra-item i { 
    font-size: 2.5rem; 
    color: var(--primary-yellow); 
    margin-bottom: 1rem; 
}
.why-us-extra-item h3 { 
    font-size: 1.3rem; 
    margin-bottom: 0.5rem; 
}
.why-us-extra-item p { 
    color: var(--text-light); 
}

.team-section { 
    background-color: var(--background-white); 
}
.team-grid { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 2rem; 
}
.team-member { 
    text-align: center; 
    width: 300px; 
}
.team-member img { 
    width: 150px; 
    height: 150px; 
    border-radius: 50%; 
    object-fit: cover; 
    margin-bottom: 1rem; 
    border: 4px solid var(--light-bg); 
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); 
}
.team-member h3 { 
    font-size: 1.4rem; 
    color: var(--text-dark); 
}
.team-member span { 
    color: var(--text-light); 
    font-style: italic; 
}

.cta-section { 
    background-color: var(--primary-yellow); 
    color: var(--text-dark); 
    text-align: center; 
    padding: 4rem 0; 
}
.cta-section h2 { 
    font-size: 2.2rem; 
    margin-bottom: 1rem; 
}
.cta-section p { 
    max-width: 600px; 
    margin: 0 auto 2rem auto; 
}
.cta-buttons { 
    display: flex; 
    justify-content: center; 
    gap: 1rem; 
}

.main-footer { 
    background-color: var(--primary-yellow-darker); 
    color: var(--text-dark); 
    padding: 4rem 0 2rem 0; 
}
.footer-grid { 
    display: grid; 
    grid-template-columns: 2fr 1fr 1fr 1.5fr; 
    gap: 3rem; 
    margin-bottom: 3rem; 
}
.footer-col h4 { 
    font-size: 1.2rem; 
    margin-bottom: 1rem; 
    font-weight: 600; 
    color: var(--text-dark); 
}
.footer-col p, .footer-col a { 
    color: var(--text-dark); 
    text-decoration: none; 
    line-height: 1.8; 
}
.footer-col a:hover { 
    color: var(--background-white); 
}
.footer-col ul { 
    list-style: none; 
}
.footer-col li { 
    margin-bottom: 0.5rem; 
}
.footer-col .working-hours span { 
    display: block; 
}
.footer-bottom { 
    border-top: 1px solid var(--text-dark); 
    padding-top: 2rem; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    color: var(--text-dark); 
}
.footer-links a { 
    margin-left: 1.5rem; 
    text-decoration: none; 
    color: var(--text-dark); 
}

@media (max-width: 992px) {
    .main-header {
        position: static;
        background-color: var(--background-white);
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }
    .hero {
        padding-top: 5rem;
    }
    .navbar {
        flex-wrap: wrap;
    }
    .nav-logo {
        order: 1;
    }
    .hamburger-menu {
        display: block;
        order: 2;
    }
    .nav-links {
        display: none;
        flex-basis: 100%;
        order: 3;
        flex-direction: column;
        align-items: center;
        list-style: none;
        padding: 1rem 0 0 0;
        gap: 0;
        width: 100%;
    }
    .nav-links.active {
        display: flex;
    }
    .nav-link {
        width: 100%;
        text-align: center;
        padding: 1rem 0;
    }
    .why-us-extra-grid { 
        grid-template-columns: repeat(2, 1fr); 
    } 
    .footer-grid { 
        grid-template-columns: repeat(2, 1fr); 
    } 
}
@media (max-width: 768px) { 
    .hero-content h1 { 
        font-size: 2.5rem; 
    } 
    .why-us-extra-grid { 
        grid-template-columns: 1fr; 
    } 
    .footer-grid { 
        grid-template-columns: 1fr; 
        text-align: center; 
    } 
    .social-links { 
        justify-content: center; 
    } 
    .footer-bottom { 
        flex-direction: column; 
        gap: 1rem; 
    } 
}
