.about-us {
    position: relative;
    width: 100%;
    min-height: 88vh;
    margin: 0 auto 15px auto;
    padding: 40px 20px;
    scroll-margin-top: 80px;
    background-color: rgba(183, 180, 180, 0.7);
    overflow: hidden;
    z-index: 0;
}

.about-us::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../images/about-back.png") center/contain no-repeat;
    filter: blur(10px);
    /* opacity: 0.15; */
    z-index: -1;
}



.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-text {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
}

.about-text h1 {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 32px;
    line-height: 39px;
    text-align: center;
    padding: 30px 0;
    text-transform: uppercase;
    position: relative;
}

/* Stats section */
.stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 20px 0 40px;
}

.stat-card {
    width: 200px;
    height: 150px;
    background: linear-gradient(180deg, rgba(6, 17, 60, 0.4) 0%, rgba(16, 46, 162, 0.4) 100%);
    border-radius: 20px;
    border: 1px solid rgba(249, 228, 0, 0.3);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border: 1px solid #F9E4004D;
}

.stat-number {
    font-family: Unbounded, sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.stat-label {
    font-family: Unbounded, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: white;
    text-align: center;
}

.about-content-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.about-content {
    max-width: 904px;
    width: 100%;
    background: linear-gradient(180deg, rgba(6, 17, 60, 0.4) 0%, rgba(16, 46, 162, 0.4) 100%);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #F9E4004D;
    max-height: 400px;
    overflow-y: auto;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.about-content p {
    font-family: Unbounded;
    font-size: 16px;
    font-weight: 400;
    line-height: 35px;
    letter-spacing: 0.02em;
    color: white;
}

/* Custom scrollbar for about-content */
.about-content::-webkit-scrollbar {
    width: 8px;
}

.about-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.about-content::-webkit-scrollbar-thumb {
    background: rgba(249, 228, 0, 0.3);
    border-radius: 10px;
}

.about-content::-webkit-scrollbar-thumb:hover {
    background: rgba(249, 228, 0, 0.5);
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
    .about-text h1 {
        font-size: 28px;
        padding: 20px 0;
    }
    
    .stats-container {
        gap: 20px;
    }
    
    .stat-card {
        width: 160px;
        height: 130px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .about-content {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .stats-container {
        gap: 15px;
    }
    
    .stat-card {
        width: 140px;
        height: 120px;
    }
    
    .stat-number {
        font-size: 30px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .about-content {
        padding: 20px;
    }
    
    .about-content p {
        font-size: 14px;
        line-height: 28px;
    }
}