/* About Page Specific Styles */

.about-hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url("https://images.unsplash.com/photo-1486496572940-2bb2341fdbdf?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80")
            no-repeat center center;
    background-size: cover;
    padding: 120px 0 80px;
    text-align: center;
}

.about-hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary);
}

.about-hero-section p {
    font-size: 1.2rem;
    color: var(--primary);
    max-width: 600px;
    margin: 0 auto;
}

/* Company Story Section */
.company-story-section {
    padding: 80px 0;
    background-color: var(--dark);
}

.story-content h2 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.story-content .lead {
    color: var(--light);
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-weight: 300;
}

.story-content p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.story-image img {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.story-image img:hover {
    transform: scale(1.02);
}

/* Achievement Stats */
.achievement-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    color: var(--accent);
    font-size: 2.5rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.stat-item p {
    color: var(--gray);
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive for About Page */
@media (max-width: 768px) {
    .about-hero-section {
        padding: 100px 0 60px;
    }

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

@media (max-width: 576px) {
    .about-hero-section h1 {
        font-size: 2rem;
    }

    .story-content h2 {
        font-size: 2rem;
    }

    .achievement-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-item h3 {
        font-size: 2rem;
    }
}
