
/* Стили только для main */
.hero {
    padding: 60px 0 40px;
    background: linear-gradient(145deg, #e7f2fa 0%, #d4e6f5 100%);
    text-align: center;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 900;
    margin-bottom: 16px;
    line-height: 1.2;
    background: linear-gradient(135deg, #0b4b6e 0%, #0b7bb8 50%, #4ba9e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(11, 123, 184, 0.15);
    animation: fadeSlideIn 0.8s ease-out;
}

@keyframes fadeSlideIn {
    0% {
        opacity: 0;
        transform: translateY(-12px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    margin: 8px auto 0;
    background: linear-gradient(90deg, #0b7bb8, #4ba9e9);
    border-radius: 4px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 620px;
    margin: 20px auto 28px;
    color: #1e3b4f;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

@media (max-width: 820px) {
    .hero h1 {
        font-size: 2.4rem;
    }
    .hero h1::after {
        width: 60px;
        height: 3px;
    }
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    .hero h1::after {
        width: 48px;
        height: 3px;
    }
    .hero p {
        font-size: 1rem;
    }
}
