/* About Page Specifics */
.about-header {
    background-color: #2a2a2a;
    color: #f8f9fa;
    padding: 120px 0 60px 0;
    text-align: center;
}

.about-header .section-title {
    margin-bottom: 15px;
    font-size: 3em;
    font-weight: 700;
    color: #00BFFF;
}

.about-header .about-tagline {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.8;
}

.about-section {
    padding: 80px 0;
    background-color: #212121;
}

.about-section.team-section {
    background-color: #2a2a2a;
    padding-bottom: 0;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.about-intro-grid .about-text h2 {
    color: #f8f9fa;
    margin-bottom: 20px;
}

.about-intro-grid .about-text p {
    color: #b0b0b0;
    line-height: 1.8;
}

.about-intro-grid .about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-stats {
    background-color: #1a1a1a;
    padding: 40px 20px;
    border-radius: 8px;
    margin-top: 60px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.about-stats .stat {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.about-stats .stat-number {
    font-size: 3em;
    font-weight: 700;
    color: #00BFFF;
    margin-bottom: 5px;
}

.about-stats .stat-label {
    font-size: 1.1em;
    color: #b0b0b0;
}

/* Responsive Design for About Page */
@media (max-width: 992px) {
    .about-header .section-title {
        font-size: 2.8em;
    }
    .about-header .about-tagline {
        font-size: 1.1em;
    }
    .about-intro-grid {
        grid-template-columns: 1fr;
    }
    .about-intro-grid .about-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .about-intro-grid {
        gap: 40px;
    }
    .about-stats {
        flex-direction: column;
        gap: 20px;
    }
    .about-stats .stat {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .about-header .section-title {
        font-size: 2em;
    }
    .about-header .about-tagline {
        font-size: 0.9em;
    }
    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }
}