.hero-support {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.support-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
}

.support-text h3 {
    font-size: 22px;
    margin: 0;
    font-weight: bold;
    color: #fff;
}

.support-text p {
    font-size: 14px;
    margin: 5px 0 0;
    color: #fff;

}

.support-text a {
    color: white;
    text-decoration: underline;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #fff;

}

.hero-content p {
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
    color: #fff;

}

.hero-button {
    display: inline-block;
    background: white;
    color: #1bb3a3;
    padding: 14px 30px;
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.3s;
}

.hero-button:hover {
    background: #e0f7f5;
}