.hero {
    background: linear-gradient(135deg, #8000FF 40%, #FF5A5F);
    color: white;
    padding: 60px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero .container {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.hero-image-inline {
    text-align: center;
    margin-bottom: 30px;
}

.hero-image-inline img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Кнопки */
.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    padding-top: 60px;
}

.btn-primary-hero {
    background: white;
    color: #8000FF;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-primary-hero:hover {
    background: #8000FF;
    color: #ffffff;
}

.btn-secondary-hero {
    background: transparent;
    color: white;
    padding: 15px 30px;
    border: 2px solid white;
    border-radius: 25px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-secondary-hero:hover {
    background: white;
    color: #8000FF;
}

/* Адаптивные стили */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .hero-image-inline img {
        max-width: 80%;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 15px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-image-inline img {
        max-width: 90%;
    }
}
