.section-main {
    height: 100vh;
    position: relative;
    background-color: #547556;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-main::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: url('https://kbank-uat.kasikornbank.com/SiteCollectionDocuments/kbankthesierra/assets/img/main-close-bg.jpg');
    background-size: cover;
    opacity: 0.2;
    z-index: 1;
    filter: grayscale(100%);
}

.section-main::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: url('https://kbank-uat.kasikornbank.com/SiteCollectionDocuments/kbankthesierra/assets/img/layer-close-bg.png');
    background-size: cover;
    mix-blend-mode: luminosity;
    opacity: 0.3;
    z-index: 2;
}

.container {
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
}

.content-text {
    z-index: 3;
    margin-top: 20px;
    text-align: center;
    max-width: 600px;
}

.section-main img {
    z-index: 3;
    position: relative;
    width: 448px;
    height: 450px;
}

.section-main .h1 {
    z-index: 3;
    font-family: Trirong;
    font-weight: 500;
    font-size: 32px;
    line-height: 160%;
    text-align: center;
    vertical-align: middle;
    color: white !important;
    margin-bottom: 50px;
}

.section-main .p {
    z-index: 3;
    font-family: Trirong;
    font-weight: 500;
    font-size: 20px;
    line-height: 170%;
    text-align: center;
    vertical-align: middle;
    margin-bottom: 50px;
    color: white !important;
}

.kasikorn-button {
    position: relative;
    background: #527358;
    color: white;
    border: none;
    border-radius: 100px;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 30px auto;
    min-width: 150px;
    max-width: 343px;
    max-height: 48px;
}

.kasikorn-button::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #d0c0a1, #bba985);
    border-radius: 100px;
    z-index: -1;
}

.kasikorn-button a {
    position: relative;
    z-index: 2;
    font-family: Trirong;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #FFEBC7;
    text-decoration: none;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.desktop-container {
    display: block;
}

.mobile-container {
    display: none;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        gap: 15px;
        /* margin-top: 60px; */
    }

    .section-main .h1 {
        font-size: 20px;
        margin-top: 70px;
        margin-bottom: 30px;
    }

    .section-main .p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .kasikorn-button {
        margin: 0px 4px;
        max-width: 328px;
        max-height: 48px;
    }

    .section-main img {
        width: 328px;
        height: 338px;
    }

    .desktop-container {
        display: none !important;
    }
    
    .mobile-container {
        display: block !important;
    }
}