.be-well-section {
    text-align: center;
}

.be-well-section .banner img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

.be-well-section .welcome-text h1 {
    font-size: 50px;
    margin-bottom: 0;
    color: #FFF;

}

.be-well-section .welcome-text p {
    font-size: 35px;
    color: #FFF !important;
}

.tab-category {
    padding: 50px 0;
    background: linear-gradient(270deg, #c3375e 0%, #e07e98 100%);
}

.category-buttons {
    margin-top: 60px;
    margin-bottom: 60px;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.category-buttons li button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ffffff;
    color: #000000;
    border-radius: 14px;
    text-decoration: none;
    transition: background-color 0.3s;
    border: 1px solid rgba(0, 0, 0, 0);
}

.category-buttons li button:hover {
    background-color: #c3375e;
}

.be-well-wrapper {
    position: relative;
}

.center-logo {
    position: absolute;
    top: calc(8%);
    /* nếu logo 110px => 110/2 = 55px */
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.center-logo img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 6px solid #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    background-color: white;
}

.welcome-text {
    margin-top: 50px;
}

.category-select {
    display: none;
}

@media (max-width: 768px) {
    .center-logo {
        top: 80px;
    }

    .welcome-text {
        margin-top: 35px;
    }

    .center-logo img {
        width: 75px;
        height: 75px;
    }

    .tab-category {
        padding: 10px 0;
    }

    .be-well-section .welcome-text h1 {
        font-size: 35px;
        margin-bottom: 10px;
    }

    .be-well-section .welcome-text p {
        font-size: 28px;
        line-height: 1.2;
    }

     .category-buttons {
        display: none;
    }

    .category-select {
        display: block;
        width: 100%;
        font-size: 16px;
        border-radius: 20px;
    }


}
