/*Background Picture*/
.section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: left;
    text-align: center;
    padding: 0 1rem;
}

.section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 160%;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.8)), 
                url('/assets/images/backgrounds/about-backr.webp') center/cover;
    background-attachment: fixed;
    filter: blur(3px);
    z-index: -1;
}

/* About Section Styles */
.about-content {
    max-width: 1200px;
    padding: 6rem 2rem 2rem;
    text-align: left;
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
    text-align: left;
}

.about-content p {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item{
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.1rem;
    margin-bottom: 0;
    text-align: center;
}

@media (max-width: 768px) {
    .about-content {
        padding: 4rem 1rem 2rem;
    }
    
    .about-content h2 {
        font-size: 2rem;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
} 