/* Оновлення стилів hero секції */

#main h1 {
    font-size: 36px;
    line-height: 1.3;
    font-family: Intro, sans-serif;
    color: #fff;
    text-transform: none;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-highlight {
    background: linear-gradient(to right, #00e9d0 0, #eee839 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    display: inline-block;
}

.hero-features {
    margin: 40px 0 30px;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-feature-item {
    font-size: 20px;
    font-family: Lato-Regular, sans-serif;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.hero-checkmark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: #01a0c6;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    flex-shrink: 0;
    text-shadow: none;
    box-shadow: 0 2px 8px rgba(1, 160, 198, 0.4);
}

.hero-tagline {
    font-size: 24px;
    font-family: Lobster-Regular, sans-serif;
    color: #fff;
    text-align: center;
    margin: 30px 0 40px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    background: linear-gradient(to right, #00e9d0 0, #eee839 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#main .border {
    margin: 30px auto;
}

#main a.button {
    margin-top: 0;
}

/* Адаптивність */
@media (max-width: 991px) {
    #main h1 {
        font-size: 32px;
        line-height: 1.3;
        margin-bottom: 25px;
    }
    
    .hero-feature-item {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .hero-tagline {
        font-size: 22px;
        margin: 25px 0 35px;
    }
}

@media (max-width: 767px) {
    #main h1 {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 20px;
    }
    
    .hero-features {
        margin: 30px 0 25px;
    }
    
    .hero-feature-item {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .hero-tagline {
        font-size: 20px;
        margin: 20px 0 30px;
    }
}

@media (max-width: 575px) {
    #main h1 {
        font-size: 22px;
        line-height: 1.4;
        margin-bottom: 15px;
        padding: 0 10px;
    }
    
    #main h1 .hero-highlight {
        display: inline;
        word-break: break-word;
    }
    
    .hero-feature-item {
        font-size: 15px;
        margin-bottom: 8px;
    }
    
    .hero-tagline {
        font-size: 18px;
        margin: 15px 0 25px;
    }
}

/* Додаткова адаптація для дуже маленьких екранів */
@media (max-width: 400px) {
    #main h1 {
        font-size: 20px;
        line-height: 1.5;
        padding: 0 5px;
    }
}

@media (max-width: 360px) {
    #main h1 {
        font-size: 18px;
        line-height: 1.5;
    }
}

