/* === ABOUT US SECTION STYLES === */
.about-section { 
    max-width: 1200px;
    margin: 40px auto; 
    padding: 40px; 
    background: #ffffff; 
    border: 1px solid #e2e8f0; 
    border-radius: 16px; 
    border-top: 4px solid #e11d48; 
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: ""; 
    position: absolute; 
    top: -50px; 
    right: -50px;
    width: 200px; 
    height: 200px; 
    background: #e11d48; 
    opacity: 0.05; 
    border-radius: 50%;
}

.about-title { 
    font-size: 28px; 
    font-weight: 800; 
    color: #1e293b; 
    margin-bottom: 25px; 
    padding-bottom: 15px; 
    border-bottom: 2px solid #e2e8f0; 
    position: relative;
}

.about-title::after {
    content: ""; 
    position: absolute; 
    bottom: -2px; 
    left: 0; 
    width: 80px; 
    height: 2px; 
    background: linear-gradient(135deg, #e11d48, #be123c);
}

.about-content { 
    font-size: 16px; 
    line-height: 1.8; 
    color: #475569; 
    margin-bottom: 30px; 
}

.about-content p {
    margin-bottom: 15px;
}

.about-stats {
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); 
    gap: 20px;
    margin-top: 40px; 
    text-align: center;
}

.stat-item { 
    padding: 20px; 
    background: #f8fafc; 
    border-radius: 12px; 
    transition: all 0.3s ease; 
}

.stat-item:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); 
    background: white; 
}

.stat-number { 
    font-size: 32px; 
    font-weight: 900; 
    background: linear-gradient(135deg, #e11d48, #be123c); 
    -webkit-background-clip: text; 
    background-clip: text; 
    color: transparent;
}

.stat-label { 
    font-size: 14px; 
    font-weight: 600; 
    color: #64748b; 
    margin-top: 5px; 
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .about-section { 
        margin: 20px; 
        padding: 25px; 
    }
}