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

.hero-section .desc-hero {
    margin-top: auto;
    width: 95%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.desc-hero button {
    background-color: #ffffff;
    border: none;
    border-radius: 30px;
    padding: 10px 30px 10px 40px;
    color: #f1842f;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.desc-hero button img {
    height: 10px;
    width: auto;
}

.desc-left {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

.desc-left p {
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 30px;
}

.desc-left span {
    color: #ffffff;
}

.box-gpay {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
}

.hero-section h1 {
    position: absolute;
    top: 19%;
    font-size: 72px;
    color: #ffffff;
    z-index: 10;
    text-align: center;
}

.hero-section .img-phone {
    position: absolute;
    bottom: 0;
    height: 600px;
    z-index: 20;
}

.img-ellipse {
    position: absolute;
    height: 900px;
    bottom: -70px;
}

.sub-about {
    height: 60vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 50px;
}

.sub-about h1 {
    color: #f1842f;
    font-size: 48px;
    text-align: center;
}

.sub-about p {
    color: #333333;
    font-size: 22px;
    text-align: center;
}

.tier-section {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 50px;
    background-image: url("/images/bg-tier.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 50px;
}

.head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 50px;
    overflow: hidden;
}

.head h1 {
    font-size: 48px;
    color: #333333;
}

.head button {
    background-color: #f1842f;
    padding: 10px 40px;
    font-size: 16px;
    color: #ffffff;
    border-radius: 30px;
    border: none;
}

.content {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.item {
    background-color: #ffffff;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    border-radius: 20px;
}

.item h4 {
    font-size: 24px;
    color: #333333;
    font-weight: 600;
    margin: 0;
    overflow-y: hidden;
}

.item img {
    height: 400px;
}

.item p {
    font-size: 18px;
    color: #333333;
    margin: 0;
    text-align: center;
    overflow: hidden;
}

.explore-section {
    padding: 50px;
    margin-top: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.explore-section h1 {
    text-align: center;
    font-size: 48px;
    color: #f1842f;
}

.explore-section .content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 100px;
    margin-top: 100px;
}

.left-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
}

.list-item {
    padding: 30px;
    border-left: 5px solid #f7f7f7;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 20px;
    cursor: pointer;
    transition: border-color 0.3s ease;
    width: 100%;
}

.list-item.active {
    border-color: #f1842f;
}

.list-item .head-list {
    display: flex;
    align-items: center;
    gap: 10px;
}

.right-content img {
    transition: opacity 0.3s ease;
}

.head-list img {
    height: 20px;
}
.list-item span {
    font-size: 20px;
    color: #000000;
    display: none;
}

.list-item.active span {
    display: block;
}

.head-list p {
    font-size: 22px;
    font-weight: 600;
    color: #000000;
}


.right-content {
    height: 100%;
    height: 100%;
    overflow: hidden;
}

.right-content img {
    height: 100%;
    width: 100%;
}

.earn-section {
    padding: 100px 50px;
    background-color: #f2f2f2;
}

.earn-head {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.earn-head h1 {
    font-size: 48px;
    color: #f1842f;
}

.earn-head p {
    color: #000000;
    font-size: 22px;
}

.earn-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 100px;
}

.item-card {
    background-image: url("/images/img-earn1.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    height: 420px;
    padding: 30px;
    border-radius: 20px;
}

.item-card.two {
    background-image: url("/images/img-earn2.png");
}

.item-card .head-card {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.head-card img {
    height: 40px;
}

.circle {
    background-color: #ffffff;
    border-radius: 50%;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle img {
    height: 20px;
}

.item-card p {
    color: #ffffff;
    font-size: 20px;
}

@media (max-width: 1550px) {
    .hero-section h1 {
        font-size: 52px;
    }

    .hero-section .img-phone {
        height: 480px;
    }
}