@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Comfortaa:wght@400;500;600;700&display=swap');

:root {
    --primary-color: #FF7A00;
    --primary-light: #FFA64D;
    --primary-dark: #E56D00;
    --secondary-color: #1A1A1A;
    --secondary-light: #333333;
    --secondary-dark: #000000;
    --text-color: #2D2D2D;
    --text-light: #4D4D4D;
    --text-lighter: #757575;
    --white: #FFFFFF;
    --light-bg: #F7F7F7;
    --gray-light: #EEEEEE;
    --gray: #DDDDDD;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Comfortaa', cursive;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.5em;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.section-header.reverse {
    color: var(--white);
}

.section-header.reverse p {
    color: var(--gray-light);
}

.accent {
    color: var(--primary-color);
}

section {
    padding: 5rem 0;
}

.btn-primary, .btn-secondary, .btn-outline, .btn-accent {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-light);
    color: var(--white);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.btn-outline:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-accent {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-accent:hover {
    background-color: var(--primary-color);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
    padding: 10px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    font-family: 'Comfortaa', cursive;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.logo span {
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-list a {
    font-weight: 500;
    color: var(--text-color);
    position: relative;
}

.nav-list a:not(.btn-accent):after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-list a:not(.btn-accent):hover {
    color: var(--primary-color);
}

.nav-list a:not(.btn-accent):hover:after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.hero {
    padding-top: 7rem;
    background: linear-gradient(135deg, var(--white) 50%, var(--gray-light) 50%);
    overflow: hidden;
}

.hero-diagonal-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.hero-content {
    flex: 0 0 50%;
    padding-right: 3rem;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image {
    position: relative;
    flex: 0 0 50%;
    z-index: 1;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: var(--shadow);
    transform: rotate(3deg);
}

.hero-image:before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 5px solid var(--primary-color);
    border-radius: 20px;
    z-index: -1;
}

.hero-achievements {
    display: flex;
    justify-content: space-between;
    margin-top: 4rem;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    padding: 2rem;
}

.achievement {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.achievement-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Comfortaa', cursive;
}

.achievement-text {
    font-size: 1rem;
    color: var(--text-light);
}

.about {
    background-color: var(--light-bg);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-image {
    flex: 0 0 40%;
}

.about-image img {
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.about-text {
    flex: 0 0 60%;
}

.about-text h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.about-features {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.feature {
    text-align: center;
}

.feature img {
    width: 60px;
    margin: 0 auto 1rem;
}

.feature h4 {
    font-size: 1rem;
}

.programs {
    background-color: var(--secondary-color);
    color: var(--white);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    gap: 2rem;
}

.program-card {
    display: flex;
    background-color: var(--secondary-light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.program-image {
    flex: 0 0 40%;
}

.program-image img {
    height: 100%;
    object-fit: cover;
}

.program-content {
    flex: 0 0 60%;
    padding: 2rem;
}

.program-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.program-benefits {
    margin: 1.5rem 0;
}

.program-benefits li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.program-benefits li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-light);
}

.benefits {
    background-color: var(--light-bg);
}

.benefits-layout {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.benefits-image {
    flex: 0 0 40%;
}

.benefits-image img {
    border-radius: 50%;
    box-shadow: var(--shadow);
}

.benefits-list {
    flex: 0 0 60%;
}

.benefit-item {
    display: flex;
    margin-bottom: 2rem;
}

.benefit-number {
    flex: 0 0 auto;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-right: 1.5rem;
    font-family: 'Comfortaa', cursive;
}

.benefit-content h3 {
    margin-bottom: 0.5rem;
}

.testimonials {
    background-color: var(--secondary-color);
    color: var(--white);
}

.testimonials-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--secondary-light);
}

.testimonials-slider::-webkit-scrollbar {
    height: 8px;
}

.testimonials-slider::-webkit-scrollbar-track {
    background: var(--secondary-light);
    border-radius: 10px;
}

.testimonials-slider::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 10px;
}

.testimonial-card {
    flex: 0 0 400px;
    background-color: var(--secondary-light);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.testimonial-text {
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
}

.testimonial-text:before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    left: -1rem;
    top: -1.5rem;
    color: var(--primary-color);
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 0.2rem;
    font-size: 1rem;
}

.author-info p {
    font-size: 0.875rem;
    color: var(--text-lighter);
}

.contact {
    background-color: var(--light-bg);
}

.contact-content {
    display: flex;
    gap: 3rem;
}

.contact-info {
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.info-item img {
    width: 40px;
    margin-bottom: 1rem;
}

.contact-image {
    margin-top: 2rem;
}

.contact-image img {
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-form-wrapper {
    flex: 0 0 60%;
    background-color: var(--white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.contact-form {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.form-group {
    flex: 0 0 calc(50% - 0.75rem);
}

.form-group.full-width {
    flex: 0 0 100%;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--gray);
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input {
    width: auto;
    margin-top: 0.3rem;
}

.checkbox-group label {
    margin-bottom: 0;
}

.checkbox-group a {
    color: var(--primary-color);
    text-decoration: underline;
}

.footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.footer-logo {
    flex: 0 0 30%;
}

.footer-logo a {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 40px;
    margin-right: 10px;
}

.footer-logo span {
    color: var(--white);
    font-family: 'Comfortaa', cursive;
    font-weight: 700;
    font-size: 1.5rem;
}

.footer-nav,
.footer-programs,
.footer-policies {
    flex: 0 0 20%;
}

.footer h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer ul li {
    margin-bottom: 0.75rem;
}

.footer a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--secondary-light);
}

@media (max-width: 1100px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    section {
        padding: 4rem 0;
    }
    
    .hero-diagonal-wrapper {
        flex-direction: column;
    }
    
    .hero-content {
        flex: 0 0 100%;
        padding-right: 0;
        margin-bottom: 3rem;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        flex: 0 0 100%;
    }
    
    .about-content,
    .benefits-layout,
    .contact-content {
        flex-direction: column;
    }
    
    .about-image,
    .about-text,
    .benefits-image,
    .benefits-list,
    .contact-info,
    .contact-form-wrapper {
        flex: 0 0 100%;
    }
    
    .about-features {
        flex-wrap: wrap;
        gap: 2rem;
    }
    
    .footer-top {
        flex-wrap: wrap;
        gap: 2rem;
    }
    
    .footer-logo {
        flex: 0 0 100%;
    }
    
    .footer-nav,
    .footer-programs,
    .footer-policies {
        flex: 0 0 30%;
    }
}

@media (max-width: 768px) {
    .nav-list {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        flex-direction: column;
        background-color: var(--white);
        padding: 2rem;
        transition: var(--transition);
        z-index: 100;
    }
    
    .nav-list.active {
        left: 0;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .program-card {
        flex-direction: column;
    }
    
    .program-image {
        flex: 0 0 200px;
    }
    
    .form-group {
        flex: 0 0 100%;
    }
    
    .footer-nav,
    .footer-programs,
    .footer-policies {
        flex: 0 0 100%;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero-achievements {
        flex-direction: column;
        gap: 2rem;
    }
    
    .testimonial-card {
        flex: 0 0 300px;
    }
}