/* ============================================
   SERVICE PAGE STYLES
   ============================================ */
body {
    background-color: #ffffff;
    color: #333333;
}

/* ========== HERO SECTION ========== */
.service-hero {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}



/* Navbar adjustments for overlapping hero */
.navbar {
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* ========== STATS BAND ========== */
.stats-band {
    background-color: #000000;
    color: #ffffff;
    padding: 60px 0;
}

.stats-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 6vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 20px;
    min-width: 250px;
}

.stat-number {
    color: #f10000;
    font-size: 3.5rem;
    font-weight: 800;
    margin: 0;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: #cccccc;
    margin: 0;
    line-height: 1.5;
    max-width: 200px;
}

/* ========== RESPONSIVENESS ========== */
@media (max-width: 1024px) {
    .stats-container {
        padding: 0 32px;
    }
}

@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 24px;
        gap: 30px;
    }
}
