/* About Page Styles */

/* Hero Section */
.about-hero {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/about-hero.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: var(--hero-padding);
    text-align: center;
    margin-bottom: 60px;
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

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

/* Section Headers */
.section-header.text-center {
    text-align: center;
}

.section-header p.subtitle {
    max-width: 700px;
    margin: 20px auto 0;
}

.section-header p.subtitle.dark {
    color: var(--text-color);
}

.section-header p.subtitle.light {
    color: var(--text-muted);
}

.section-header h2.text-white {
    color: var(--white);
}

/* Our Story */
.our-story {
    margin-bottom: 80px;
}

.story-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 50px;
}

.story-text {
    flex: 1;
}

.story-text p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.story-text p.lead {
    font-size: 1.1rem;
}

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Mission & Values */
.mission-values {
    background-color: var(--light-bg);
    padding: 80px 0;
    margin-bottom: 80px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.value-card h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.value-card p {
    color: var(--text-color);
    line-height: 1.6;
}

/* CTA Section */
.about-cta {
    background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)), url('../images/about-cta.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 80px 0;
    margin-bottom: 80px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Contact CTA */
.contact-cta {
    text-align: center;
    margin-bottom: 80px;
    padding: 60px;
    background-color: var(--light-bg);
    border-radius: 8px;
}

.contact-cta h2 {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.contact-cta p {
    color: var(--text-color);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.contact-cta-buttons .btn {
    padding: 12px 30px;
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .story-content {
        flex-direction: column;
    }
    
    .contact-cta {
        padding: 40px 20px;
    }
}
