.hero {
    position: relative;
    background: var(--main-gradient);
    color: var(--color-white);
    padding: var(--page-hader-padding);
}

.hero-content {
    text-align: center;
}

.hero-description {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 992px) {
    .hero-content {
        text-align: left;
        width: 50%;
    }

    .hero-actions {
        flex-direction: row;
    }
}
