/* Common Hero Section Styles */

.health-checkups-hero {
    background: linear-gradient(135deg, #0b2baa 0%, #0b2baa 100%);
    color: white;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    align-items: center;
}

.health-checkups-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><polygon fill="rgba(255,255,255,0.05)" points="1000,100 1000,0 0,100"/></svg>') no-repeat;
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 2.5rem !important;
}

.hero-content .lead {
    font-size: 1.1rem;
}

.hero-stats {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    margin-top: 30px;
    backdrop-filter: blur(10px);
}

.stat-item {
    text-align: center;
    margin-bottom: 10px;
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: #0df8de;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}