.explore-section {
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 40px 0;
}

.explore-left {
    flex: 1;
    background: #fff;
    border-radius: 12px;
    opacity: 0.9;
    padding: 20px;
}

.explore-left h1 {
    color: #004080;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.explore-left p {
    font-size: 16px;
    margin-bottom: 10px;
    color: #555;
    text-align: justify;
}

.explore-icons {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.icon-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 130px;
    text-align: center;
    background: none;
}

.icon-box img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 8px;
}

.icon-box p {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    color: #00bcd4;
    width: auto;
}

.explore-right {
    flex: 1;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.image-stack {
    position: relative;
    width: 100%;
    max-width: 700px;
    min-height: 500px;
    margin: 40px auto;
}

.image-stack .image {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.img-main {
    top: 130px;
    left: 0;
    width: 60%;
    z-index: 1;
    box-shadow: none !important;
}

.img-top-right {
    top: -50px;
    right: 50px;
    width: 50%;
    z-index: 2;
}

.img-bottom-right {
    top: 360px;
    right: 50px;
    width: 40%;
    z-index: 3;
}

.image img {
    width: 100%;
    display: block;
}

/* Hiển thị trên mobile */
@media screen and (max-width: 1280px) {
    .explore-left h1 {
    font-size: 25px;
}
    .explore-section {
        flex-direction: column;
        gap: 20px;
    }

    .explore-left {
        padding: 20px;
    }
    
    .explore-icons {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: nowrap;
        gap: 20px;
        margin-top: 30px;
    }

    .icon-box {
        flex: 1;
        max-width: none;
        width: auto;
        text-align: center;
        padding-bottom: 50px;
        padding-top: 30px;
    }

    .explore-right {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .image-stack {
        position: relative;
        width: 100%;
        min-height: auto;
    }

    .img-main {
        position: relative !important;
        width: 100% !important;
        margin: 0 auto 0 auto;
        margin-top: -150px;
        display: block;
        border-radius: 0px !important;
        margin-bottom: 30px !important;
    }

    .img-top-right,
    .img-bottom-right {
        display: none !important;
    }

    .icon-box {
        width: 30%;
        max-width: 100px;
    }

    .explore-icons {
        justify-content: space-around;
    }
}
