.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero__content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero__title {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero__text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #333;
}

.hero__btn {
    margin-top: 20px;
}

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