/* About Page Specific Styles - Green & Gold Theme */
.about-mission {
    padding: 80px 0;
    background-color: var(--light); /* Using light green tint */
}

.about-mission .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.mission-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary); /* Deep green */
    line-height: 1.3;
    position: relative;
    padding-bottom: 15px;
}

.mission-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: var(--secondary); /* Gold accent */
}

.mission-content p {
    margin-bottom: 20px;
    font-size: 18px;
    color: var(--text); /* Dark green text */
    line-height: 1.6;
}

.mission-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(42, 92, 61, 0.15), 
                0 10px 10px -5px rgba(42, 92, 61, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2); /* Gold border */
}

.mission-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.mission-image:hover img {
    transform: scale(1.03);
}

/* Founder Section */
.founder-section {
    padding: 80px 0;
    background-color: white;
}

.founder-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.founder-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(42, 92, 61, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.2); /* Gold border */
}

.founder-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.founder-image:hover img {
    transform: scale(1.03);
}

.founder-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--primary); /* Deep green */
}

.founder-content h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--secondary); /* Gold */
    font-weight: 600;
}

.founder-content p {
    margin-bottom: 20px;
    font-size: 18px;
    color: var(--text); /* Dark green text */
    line-height: 1.6;
}

.founder-quote {
    background-color: var(--light); /* Light green background */
    padding: 30px;
    border-radius: 8px;
    margin-top: 30px;
    position: relative;
    box-shadow: 0 10px 15px -3px rgba(42, 92, 61, 0.1);
    border-left: 4px solid var(--secondary); /* Gold accent */
}

.founder-quote p {
    font-style: italic;
    position: relative;
    padding-left: 30px;
    color: var(--dark); /* Dark green text */
    font-size: 18px;
    line-height: 1.6;
}

.founder-quote p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 50px;
    color: var(--secondary); /* Gold */
    line-height: 1;
    font-family: Georgia, serif;
}

/* Approach Section */
.approach-section {
    padding: 80px 0;
    background-color: var(--light); /* Light green background */
}

.approach-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary); /* Deep green */
    position: relative;
    padding-bottom: 15px;
}

.approach-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary); /* Gold accent */
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.approach-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(42, 92, 61, 0.1), 
                0 2px 4px -1px rgba(42, 92, 61, 0.06);
    transition: all 0.3s ease;
    border-top: 3px solid var(--secondary); /* Gold accent */
}

.approach-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(42, 92, 61, 0.15), 
                0 10px 10px -5px rgba(42, 92, 61, 0.08);
}

.approach-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
    color: var(--secondary); /* Gold */
}

.approach-card h3 {
    margin-bottom: 15px;
    color: var(--primary); /* Deep green */
    font-size: 22px;
}

.approach-card p {
    color: var(--text-light); /* Soft green text */
    font-size: 16px;
    line-height: 1.6;
}

/* Responsive Styles for About Page */
@media (max-width: 1200px) {
    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .about-mission .container,
    .founder-section .container {
        grid-template-columns: 1fr;
    }
    
    .mission-image,
    .founder-image {
        order: -1;
        max-width: 600px;
        margin: 0 auto 40px;
    }
    
    .mission-content,
    .founder-content {
        text-align: center;
    }
    
    .mission-content h2::after,
    .approach-section h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .founder-quote {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .approach-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .mission-content h2,
    .founder-content h2,
    .approach-section h2 {
        font-size: 30px;
    }
    
    .founder-content h3 {
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    .about-mission,
    .founder-section,
    .approach-section {
        padding: 60px 0;
    }
    
    .mission-content h2,
    .founder-content h2,
    .approach-section h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .mission-content p,
    .founder-content p,
    .founder-quote p {
        font-size: 16px;
    }
    
    .approach-card {
        padding: 30px 20px;
    }
}

/* Animation for About Page Elements */
.about-mission .container > *,
.founder-section .container > *,
.approach-card {
    opacity: 1;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-mission .container > *.animated,
.founder-section .container > *.animated,
.approach-card.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Delay for grid items */
.approach-card:nth-child(1) { transition-delay: 0.1s; }
.approach-card:nth-child(2) { transition-delay: 0.2s; }
.approach-card:nth-child(3) { transition-delay: 0.3s; }
.approach-card:nth-child(4) { transition-delay: 0.4s; }