/* About Page Specific Styles */

/* Hero Section */
.about-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 120px 0 80px;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    color: #2C5F41;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-hero p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Our Story Section */
.our-story {
    padding: 80px 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h2 {
    color: #2C5F41;
    margin-bottom: 30px;
    font-size: 2.5rem;
    text-align: left;
}

.lead {
    font-size: 1.3rem;
    color: #4F9A94;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 30px;
}

.story-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.story-visual svg {
    width: 100%;
    height: auto;
}

/* Mission Section */
.our-mission {
    background: #f8f9fa;
    padding: 80px 0;
}

.our-mission h2 {
    text-align: center;
    color: #2C5F41;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.mission-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.mission-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
}

.mission-card h3 {
    color: #2C5F41;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.mission-card p {
    color: #666;
    line-height: 1.7;
}

/* Values Section */
.our-values {
    padding: 80px 0;
}

.our-values h2 {
    text-align: center;
    color: #2C5F41;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.values-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.value-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.value-number {
    background: linear-gradient(45deg, #2C5F41, #4F9A94);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.value-text h3 {
    color: #2C5F41;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.value-text p {
    color: #666;
    line-height: 1.7;
}

.values-visual svg {
    width: 100%;
    height: auto;
}

/* Why Choose Us Section */
.why-choose-us {
    background: #f8f9fa;
    padding: 80px 0;
}

.why-choose-us h2 {
    text-align: center;
    color: #2C5F41;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.reason-card {
    background: white;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: #4F9A94;
}

.reason-icon {
    margin-bottom: 20px;
}

.reason-icon svg {
    width: 50px;
    height: 50px;
}

.reason-card h3 {
    color: #2C5F41;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.reason-card p {
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2C5F41 0%, #4F9A94 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .cta-button {
    background: white;
    color: #2C5F41;
}

.cta-buttons .cta-button:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.cta-buttons .secondary-button {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-buttons .secondary-button:hover {
    background: white;
    color: #2C5F41;
}

/* Active Navigation Link */
.nav-menu a.active {
    color: #2C5F41;
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero {
        padding: 100px 0 60px;
    }
    
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .story-content,
    .values-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .story-text h2,
    .our-values h2,
    .our-mission h2,
    .why-choose-us h2 {
        font-size: 2rem;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .value-item {
        flex-direction: column;
        text-align: center;
    }
    
    .value-number {
        margin: 0 auto 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .cta-button,
    .cta-buttons .secondary-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .our-mission h2,
    .our-values h2,
    .why-choose-us h2 {
        font-size: 1.8rem;
    }
    
    .mission-card {
        padding: 30px 20px;
    }
    
    .reason-card {
        padding: 25px 20px;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
}