.hero-section {
    height: 80vh;
    width: 100vw;
    background-image: url("/images/bg-hero-welcome2-new.png");
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 50px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    overflow-y: hidden;
}

.hero-section h1 {
    color: #ffffff;
    font-size: 52px;
    text-align: center;
    line-height: 76px;
    padding-bottom: 100px;
}

.content {
    margin-top: -200px;
    height: auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
    padding: 10px 200px;
    margin-bottom: 200px;
}

.content .box-item {
    height: auto;
    width: 100%;
    padding: 30px 50px;
    background-color: #ffffff;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.box-item .question-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    overflow: hidden;
}

.box-item img {
    height: 40px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.box-item .answer {
    display: none;
    color: #333333;
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
    padding-top: 10px;
}

.box-item.active .answer {
    display: block;
}