:root {
    --color-primary: #1e5631;
    --color-secondary: #7a5c17;
    --color-light: #f8f9fa;
    --color-dark: #212529;
    --color-gray: #6c757d;
    --color-hover: #2a7544;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Work Sans', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    position: relative;
    margin-bottom: 2rem;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--color-secondary);
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-hover);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    font-size: 0.9rem;
    border: 2px solid transparent;
}

.primary-btn {
    background-color: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.primary-btn:hover {
    background-color: transparent;
    color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(30, 86, 49, 0.3);
    transform: translateY(-2px);
}

.secondary-btn {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.secondary-btn:hover {
    background-color: var(--color-primary);
    color: white;
    transform: translateY(-2px);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-list {
    display: flex;
    gap: 1.5rem;
}

.nav-link {
    position: relative;
    font-weight: 500;
    padding: 0.5rem 0;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
    transition: var(--transition);
}

.nav-link:hover:after, 
.nav-link.active:after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--color-primary);
    transition: var(--transition);
}

.hero-section {
    position: relative;
    background: url('../images/hero-image.webp') no-repeat center center/cover;
    height: 100vh;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.wave-divider svg {
    position: relative;
    display: block;
    width: 100%;
    height: 100px;
}

.wave-divider.reversed {
    transform: rotate(0);
}

section {
    padding: 5rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--color-gray);
}

.section-spacer {
    height: 4rem;
}

.about-section {
    background-color: var(--color-light);
}

.about-content {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.about-text, .about-image {
    flex: 1;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefits-section {
    background-color: #fff;
    overflow: hidden;
}

.benefits-infographic {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 10px;
    background-color: var(--color-light);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.benefit-icon {
    flex-shrink: 0;
}

.benefit-icon img {
    width: 60px;
    height: 60px;
}

.benefit-details h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.circle-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
}

.circle-1 {
    width: 300px;
    height: 300px;
    background-color: var(--color-primary);
    top: 10%;
    left: -100px;
}

.circle-2 {
    width: 200px;
    height: 200px;
    background-color: var(--color-secondary);
    bottom: 10%;
    right: -50px;
}

.circle-3 {
    width: 250px;
    height: 250px;
    background-color: var(--color-primary);
    top: 40%;
    right: -100px;
}

.programs-section {
    background: linear-gradient(to bottom, var(--color-light) 0%, white 100%);
}

.programs-table {
    overflow-x: auto;
    margin-bottom: 2rem;
}

table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
}

th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

th {
    background-color: var(--color-primary);
    color: white;
    font-weight: 600;
}

td ul {
    padding-left: 1.5rem;
    list-style-type: disc;
}

td ul li {
    margin-bottom: 0.5rem;
}

.programs-cta {
    text-align: center;
    margin-top: 2rem;
}

.zigzag-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(30, 86, 49, 0.1) 10px, rgba(30, 86, 49, 0.1) 20px);
}

.zigzag-divider.reversed {
    background: repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(30, 86, 49, 0.1) 10px, rgba(30, 86, 49, 0.1) 20px);
}

.testimonials-section {
    background-color: white;
}

.testimonials-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-card {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background-color: var(--color-light);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    flex: 1;
}

.testimonial-text p {
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-text p::before,
.testimonial-text p::after {
    content: '"';
    font-size: 1.5rem;
    color: var(--color-secondary);
}

.testimonial-author h3 {
    margin-bottom: 0.2rem;
    font-size: 1.2rem;
}

.testimonial-author p {
    color: var(--color-gray);
    font-style: normal;
    margin-bottom: 0;
}

.gallery-section {
    background-color: var(--color-light);
}

.gallery-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.gallery-grid.three-columns {
    grid-template-columns: repeat(3, 1fr);
}

.gallery-grid.two-columns {
    grid-template-columns: repeat(2, 1fr);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.contact-section {
    background-color: white;
    position: relative;
}

.contact-content {
    display: flex;
    gap: 3rem;
}

.contact-info, .contact-form {
    flex: 1;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.contact-details {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

input, select, textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(30, 86, 49, 0.2);
}

textarea {
    resize: vertical;
}

.footer {
    background-color: var(--color-dark);
    color: white;
    padding: 3rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-item {
    display: flex;
    flex-direction: column;
}

.footer-nav, .footer-policies {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer a {
    color: rgba(255, 255, 255, 0.8);
}

.footer a:hover {
    color: white;
}

.footer-item.logo-item {
    grid-row: 1;
    grid-column: 1;
}

.footer-item.nav-item {
    grid-row: 1;
    grid-column: 2;
}

.footer-item.policy-item {
    grid-row: 1;
    grid-column: 3;
}

.footer-item.copyright-item {
    grid-row: 1;
    grid-column: 4;
    text-align: right;
}

@media (max-width: 992px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .benefits-infographic {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid.three-columns {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-item.logo-item {
        grid-row: 1;
        grid-column: 1;
    }
    
    .footer-item.nav-item {
        grid-row: 1;
        grid-column: 2;
    }
    
    .footer-item.policy-item {
        grid-row: 2;
        grid-column: 1;
    }
    
    .footer-item.copyright-item {
        grid-row: 2;
        grid-column: 2;
        text-align: right;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-list {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .gallery-grid.three-columns,
    .gallery-grid.two-columns {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-item.logo-item,
    .footer-item.nav-item,
    .footer-item.policy-item,
    .footer-item.copyright-item {
        grid-column: 1;
    }
    
    .footer-item.logo-item {
        grid-row: 1;
        justify-content: center;
        align-items: center;
    }
    
    .footer-item.nav-item {
        grid-row: 2;
    }
    
    .footer-item.policy-item {
        grid-row: 3;
    }
    
    .footer-item.copyright-item {
        grid-row: 4;
        text-align: center;
    }
    
    .footer-nav, .footer-policies {
        align-items: center;
    }
}

@media (max-width: 576px) {
    section {
        padding: 3rem 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-section {
        height: 80vh;
    }
}