section.about-page-header .page-header-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../media/collections/about_us.webp");
}

/* Mission Section */
section.about-content-section .content-text p {
    font-size: clamp(14px,4vw,20px);
}
.mission-block {
    background-color: var(--bg-light);
    padding: 60px 10px;
    border-radius: 20px;
}

.mission-list {
    list-style: none;
    margin-top: 25px;
}

.mission-list li {
    margin-bottom: 20px;
    position: relative;
    color: var(--text-light);
    line-height: 1.7;
    text-align: start;
}

.mission-list strong {
    color: var(--text-dark);
}

/* Why Choose Us Section */
.why-choose-us-section {
    padding: 30px 0;
    background-color: var(--white);
}

.why-choose-us-section .row {
    row-gap: 20px
}

.feature-card {
    background-color: var(--bg-light);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    background-color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon span {
    font-size: 2rem;
    color: var(--white);
}

.feature-title {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-description {
    color: var(--text-light);
    line-height: 1.6;
}

/* Statistics Section */
.statistics-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.statistics-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.statistics-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.statistics-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.9), rgba(29, 78, 216, 0.8));
}

.statistics-section .container {
    position: relative;
    z-index: 2;
}

.statistics-section .section-header {
    color: var(--white);
    text-align: center;
    margin-bottom: 60px;
}

.statistics-section .section-title {
    color: var(--white);
}

.statistics-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.statistics-section .stat-item {
    text-align: center;
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.statistics-section .stat-item:hover {
    transform: translateY(-10px);
}

.statistics-section .stat-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.statistics-section .stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1;
}

.statistics-section .stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.statistics-section .stat-description {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.5;
}

@media(max-width:575px) {
   :where( section.about-content-section .content-text) h2,p {
        text-align: center;
    }
}