.common-hero-section {
    position: relative;
    background-image: url('https://res.cloudinary.com/dbywwhzot/image/upload/v1771554392/heroImg_pl778e.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    min-height: 350px;
    padding: 70px 5% 60px 5%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    contain: layout style paint;
}

.common-hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(10, 219, 205, 0.15) 100%);
    z-index: 1;
}

.common-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 850px;
    width: 100%;
}

.hero-badge {
    display: inline-block;
    font-family: "Roboto", sans-serif;
    font-size: clamp(10px, 1vw, 12px);
    font-weight: 600;
    letter-spacing: 2px;
    color: #0ADBCD;
    background: rgba(10, 219, 205, 0.15);
    border: 1px solid rgba(10, 219, 205, 0.5);
    border-radius: 30px;
    padding: 8px 20px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.common-hero-title {
    font-family: "Young Serif", serif;
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.3;
    margin: 0 0 1.8rem 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.common-hero-title .highlight {
    color: #0ADBCD;
    background: linear-gradient(135deg, #0ADBCD 0%, #08B5A8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.common-hero-description {
    font-family: "Roboto", sans-serif;
    font-size: clamp(14px, 1.6vw, 18px);
    font-weight: 400;
    color: #F0F0F0;
    line-height: 1.8;
    margin: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 4vw, 50px);
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.stat-number {
    font-family: "Young Serif", serif;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 600;
    color: #0ADBCD;
    line-height: 1;
}

.stat-label {
    font-family: "Roboto", sans-serif;
    font-size: clamp(11px, 1.2vw, 14px);
    font-weight: 400;
    color: #E0E0E0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.3), transparent);
}

/* Tablet styles */
@media (max-width: 1024px) {
    .common-hero-section {
        min-height: 450px;
        padding: 80px 5%;
    }
    
    .common-hero-title {
        margin-bottom: 1.2rem;
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    .common-hero-section {
        min-height: 400px;
        padding: 60px 5%;
    }
    
    .common-hero-content {
        max-width: 600px;
    }
    
    .common-hero-title {
        font-size: clamp(28px, 6vw, 42px);
        margin-bottom: 1rem;
    }
    
    .common-hero-description {
        font-size: clamp(13px, 2.5vw, 16px);
    }
}

/* Small mobile styles */
@media (max-width: 480px) {
    .common-hero-section {
        min-height: 350px;
        padding: 50px 5%;
    }
    
    .common-hero-content {
        max-width: 100%;
    }
    
    .common-hero-title {
        font-size: 28px;
        margin-bottom: 0.8rem;
    }
    
    .common-hero-description {
        font-size: 13px;
        line-height: 1.5;
    }
}
