.hero-section {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    padding: clamp(60px, 15vh, 120px) 20px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 107%, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.05) 5%, transparent 45%),
                radial-gradient(circle at 70% 40%, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.05) 5%, transparent 45%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: clamp(20px, 4vh, 40px);
    line-height: 1.2;
}

.hero-title span {
    color: #3498db;
    background: white;
    padding: 0 15px;
    border-radius: 4px;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-decoration {
    position: absolute;
    font-size: clamp(3rem, 8vw, 6rem);
    opacity: 0.1;
    color: white;
}

.hero-decoration.top-left {
    top: 20px;
    left: 20px;
}

.hero-decoration.bottom-right {
    bottom: 20px;
    right: 20px;
    transform: rotate(180deg);
}
