@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Questrial&display=swap');

:root {
    --primary-color: #8B6D5A;
    --secondary-color: #5A4D41;
    --accent-color: #DBC9B6;
    --text-color: #333333;
    --background-color: #F5F3F0;
    --light-gray: #E0DBD5;
    --dark-gray: #555555;
    --white: #FFFFFF;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Questrial', sans-serif;
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

section {
    padding: 5rem 2rem;
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

.primary-button, .secondary-button, .cta-button {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 5px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: 'Questrial', sans-serif;
}

.primary-button {
    background-color: var(--primary-color);
    color: var(--white);
}

.primary-button:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.secondary-button {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.secondary-button:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.cta-button {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    font-weight: 600;
}

.cta-button:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

header {
    background-color: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 50px;
    height: 50px;
    margin-right: 1rem;
}

.logo h1 {
    font-size: 1.8rem;
    margin-bottom: 0;
}

.main-nav ul {
    display: flex;
    gap: 2rem;
}

.main-nav li a {
    position: relative;
    padding: 0.5rem 0;
    font-weight: 500;
}

.main-nav li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.main-nav li a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80vh;
    background-color: var(--light-gray);
    padding: 0;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    padding: 0 3rem;
    max-width: 600px;
}

.hero-content h2 {
    font-size: 3rem;
    text-align: left;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-image {
    flex: 1;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 3rem;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
}

.about-content {
    flex: 1;
}

.about-features {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature {
    flex: 1;
    text-align: center;
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-5px);
}

.feature img {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.programs-section {
    background-color: var(--light-gray);
}

.programs-container {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.program-card {
    flex: 1;
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.program-card:hover {
    transform: translateY(-5px);
}

.program-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.program-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
}

.program-card p {
    padding: 0 1.5rem;
}

.program-features {
    padding: 0 1.5rem 1.5rem;
    list-style: disc;
    margin-left: 1.5rem;
}

.program-card .secondary-button {
    margin: 0 1.5rem 1.5rem;
}

.benefits-container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 3rem;
}

.benefits-content {
    flex: 1.2;
}

.benefits-content h2 {
    text-align: left;
}

.benefits-list {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.benefits-list li {
    margin-bottom: 0.5rem;
}

.benefits-image {
    flex: 0.8;
    border-radius: 10px;
    overflow: hidden;
}

.testimonials-section {
    background-color: var(--light-gray);
}

.testimonials-container {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    flex: 1;
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-image {
    width: 100%;
    height: 200px;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    padding: 1.5rem;
}

.testimonial-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateX(5px);
}

.faq-item h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.contact-section {
    background-color: var(--light-gray);
}

.contact-container {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

.contact-image {
    margin-top: 2rem;
    border-radius: 10px;
    overflow: hidden;
}

.contact-form {
    flex: 1;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    font-family: 'Questrial', sans-serif;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.form-group.checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group.checkbox input {
    width: auto;
}

.form-group.checkbox label {
    margin-bottom: 0;
}

footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 4rem 2rem;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.footer-logo {
    flex: 1;
}

.footer-logo img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.footer-logo h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.footer-nav,
.footer-info,
.footer-contact {
    flex: 1;
}

footer h4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

footer ul {
    margin-bottom: 1.5rem;
}

footer li {
    margin-bottom: 0.5rem;
}

footer a {
    color: var(--light-gray);
}

footer a:hover {
    color: var(--accent-color);
}

@media (max-width: 1200px) {
    .about-features,
    .programs-container,
    .testimonials-container {
        flex-direction: column;
    }
    
    .about-features {
        gap: 2rem;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .about-container,
    .benefits-container,
    .contact-container {
        flex-direction: column;
    }
    
    .hero {
        flex-direction: column;
        min-height: auto;
    }
    
    .hero-content {
        padding: 3rem;
        text-align: center;
        max-width: 100%;
    }
    
    .hero-content h2 {
        text-align: center;
    }
    
    .footer-container {
        flex-wrap: wrap;
    }
    
    .footer-logo {
        flex-basis: 100%;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        padding: 1rem;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    .main-nav.active {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    section {
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .header-container {
        padding: 1rem;
    }
    
    .logo img {
        width: 40px;
        height: 40px;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .hero-content {
        padding: 2rem 1.5rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

@media (max-width: 375px) {
    h2 {
        font-size: 1.6rem;
    }
    
    .logo h1 {
        font-size: 1.3rem;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .primary-button, 
    .secondary-button, 
    .cta-button {
        padding: 0.7rem 1.4rem;
        font-size: 0.9rem;
    }
    
    section {
        padding: 2.5rem 1rem;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-nav,
    .footer-info,
    .footer-contact {
        flex-basis: 100%;
    }
}