.cta-component-container .mobile-image {
    display: none;
}

.cta-component-container .desktop-image {
    display: block;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

.section-iframe {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    justify-content: center;
    align-items: center;
    background-color: #000000cc;
    padding: 50px;
    box-sizing: border-box;
}

.section-iframe iframe {
    width: calc(100% - 100px);
    height: calc(100% - 30px);
    border: none;
    z-index: 2;
    overflow-y: auto;
}

.section-iframe .close-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    z-index: 99999;
    background-color: #00000080;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 10px #00000080;
}

.cta-image img {
    width: 100%;
    height: 60vh;
    object-fit: cover;
    display: block;
}

.cta-component.hide {
    display: none !important;
}

.section-iframe.show {
    display: flex !important;
}

body.no-scroll {
    overflow: hidden;
}

@media (max-width: 768px) {
    .cta-component-container .mobile-image {
        display: block;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        width: 100%;
        min-height: 100vh;
    }

    .cta-component-container .desktop-image {
        display: none;
    }
}

@media (max-width: 768px) {
    .section-iframe {
        padding: 20px;
    }

    .section-iframe iframe {
        width: calc(100% - 40px);
        height: calc(100% - 40px);
    }

    .section-iframe .close-btn {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .section-iframe {
        padding: 20px;
    }

    .section-iframe iframe {
        width: calc(100% - 20px);
        height: calc(100% - 20px);
    }

    .section-iframe .close-btn {
        top: 5px;
        right: 5px;
        width: 30px;
        height: 30px;
        font-size: 18px;
    }
}
