.banner-section {
    background: linear-gradient(135deg, var(--color-a) 0%, var(--color-h) 100%);
    color: white;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/*.banner-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255,255,255,0.1) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 50px 50px, 30px 30px;
    animation: float 25s linear infinite;
}*/

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-50px, -50px) rotate(360deg); }
}

.banner-title {
    font-size: 3.2rem;
    font-weight: 800;
  {#margin-bottom: 1.5rem;#}
    position: relative;
    z-index: 2;
    letter-spacing: -0.02em;
}

.banner-subtitle {
    font-size: 1.4rem;
    opacity: 0.95;
  max-width: 75% {#900px;#}
    margin: 0 auto;
    position: relative;
    z-index: 2;
    font-weight: 400;
    line-height: 1.5;
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
    .banner-title {
        font-size: 2.5rem;
    }
}