/* About MBO Section */
.about-mbo {
    position: relative;
    background: url('/img/mbo_group.jpg') center center/cover no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    padding: 80px 0;
    color: white;
}

.about-mbo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.about-mbo .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-header h2 {
    font-size: 3rem;
    font-weight: 550;
    margin-bottom: 20px;
}

.about-header .tagline {
    font-size: 1.2rem;
    color: #ffffff;
    margin: 0;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-text h3 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #ffffff;
    text-align: justify;
}

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

.stat-item {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 4rem;
    font-weight: 550;
    color: ffffff;
    margin-bottom: 5px;
    line-height: 1;
}

.stat-unit {
    font-size: 0.9rem;
    color: #ffffff;
    margin-bottom: 5px;
    font-weight: normal;
}

.stat-plus {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 5px;
    font-weight: normal;
}

.stat-label {
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.4;
    max-width: 170px;
}

.learn-more {
    display: inline-block;
    color: ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 10px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.learn-more:hover {
    border-bottom-color: ffffff;
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-mbo {
        padding: 60px 0;
        background-attachment: scroll;
    }
    
    .about-header h2 {
        font-size: 2.5rem;
    }
    
    .about-text h3 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stat-number {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .about-header h2 {
        font-size: 2rem;
    }
    
    .about-text h3 {
        font-size: 1.8rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}