
.page-hero {
    position: relative;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--dark-blue);
    overflow: hidden;
}

.page-hero img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 15px;
}

.breadcrumb {
    font-size: 1rem;
    color: #cbd5e1;
}
.breadcrumb a { color: var(--brand-red); text-decoration: none; font-weight: bold; }

.about-section-wrapper {
    padding: 80px 5%;
    background-color: var(--bg-body);
}

.about-story {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text { flex: 1.2; }

.about-text h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--dark-blue);
    line-height: 1.4;
}
[data-theme="dark"] .about-text h2 { color: white; }

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 25px;
}

.btn-about {
    display: inline-block;
    background-color: var(--brand-red) !important;
    color: #ffffff !important;
    padding: 12px 35px;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(221, 24, 59, 0.2);
}
.btn-about:hover {
    background-color: #b0132f !important;
    transform: translateY(-3px);
}

.about-image { flex: 1; }
.about-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.mv-section-modern {
    background-color: #f8fafc;
    padding: 80px 5%;
}
[data-theme="dark"] .mv-section-modern { background-color: rgba(15, 23, 42, 0.5); }

.mv-grid-modern {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.mv-box {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: 0.3s;
}
.mv-box:hover {
    transform: translateY(-10px);
    border-color: var(--brand-red);
}

.mv-icon {
    width: 70px; height: 70px;
    background: rgba(221, 24, 59, 0.1);
    color: var(--brand-red);
    font-size: 30px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.mv-box h3 {
    font-size: 1.4rem; margin-bottom: 15px; color: var(--dark-blue);
}
[data-theme="dark"] .mv-box h3 { color: white; }

.stats-section {
    background-color: transparent; 
    padding: 80px 5%;
    border-top: 1px solid var(--border-color); 
}

.stats-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 30px !important; 
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    background: #ffffff; 
    padding: 35px 20px;
    border-radius: 16px;
    border: 1px solid #e2e8f0; 
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05); 
    text-align: center;
    transition: transform 0.3s ease;
}
[data-theme="dark"] .stat-item { background: #1e293b; border-color: #334155; }

.stat-item:hover {
    transform: translateY(-10px);
    border-color: var(--brand-red); 
}

.stat-item h3 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 10px;
    color: var(--brand-red); 
    font-family: sans-serif;
}

.stat-item p {
    font-size: 1.1rem;
    color: #64748b;
    font-weight: 700;
    margin: 0;
}
[data-theme="dark"] .stat-item p { color: #cbd5e1; }



@media (max-width: 992px) {
    .mv-grid-modern, .stats-grid { 
        grid-template-columns: repeat(2, 1fr) !important; 
        gap: 20px !important; 
    }
}

@media (max-width: 768px) {
    .page-hero { height: 250px; }
    .hero-content h1 { font-size: 2rem; }

    .about-story { 
        flex-direction: column; 
        gap: 40px; 
        text-align: center; 
    }
    
    .about-text { 
        order: 1; 
    }
    .about-image { 
        order: 2; 
        margin-top: 20px;
    }
    
    .about-text h2 { font-size: 1.6rem; }
    .btn-about { width: 100%; display: block; text-align: center; }

    .mv-grid-modern { grid-template-columns: 1fr !important; }
    .mv-box { padding: 30px 20px; }

    .stats-section { padding: 50px 5%; }
    .stats-grid { 
        grid-template-columns: repeat(2, 1fr) !important; 
        gap: 15px !important; 
    }
    .stat-item { padding: 20px 10px; }
    .stat-item h3 { font-size: 2rem; }
    .stat-item p { font-size: 0.9rem; }
}