/* About Page Specific Styles */
#about-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
                url('https://images.pexels.com/photos/3807432/pexels-photo-3807432.jpeg?auto=compress&w=1920&h=1080') center/cover;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 70px;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.about-hero-content p {
    font-size: 1.5rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* Our Story Section */
#our-story .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-content h2 {
    color: #1a237e;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.story-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Why Choose Us Section */
#why-choose-us {
    background-color: #f5f5f5;
}

#why-choose-us h2 {
    color: #1a237e;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.benefit-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    color: #1a237e;
    margin-bottom: 1rem;
}

/* Our Values Section */
#our-values {
    background-color: white;
}

#our-values h2 {
    color: #1a237e;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-item {
    padding: 2rem;
    border: 2px solid #1a237e;
    border-radius: 10px;
    text-align: center;
    transition: background-color 0.3s ease;
}

.value-item:hover {
    background-color: #1a237e;
    color: white;
}

.value-item h3 {
    color: #1a237e;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.value-item:hover h3 {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    #about-hero {
        height: 40vh;
    }

    .about-hero-content h1 {
        font-size: 2.5rem;
    }

    .about-hero-content p {
        font-size: 1.2rem;
    }

    #our-story .container {
        grid-template-columns: 1fr;
    }

    .story-content {
        order: 2;
    }

    .story-image {
        order: 1;
    }

    .story-content h2,
    #why-choose-us h2,
    #our-values h2 {
        font-size: 2rem;
    }
}