.cta_section_container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.cta_section_text {
    width: 80%;
    margin: 3% 0;
    display: flex;
    flex-direction: column;
}

.cta_section_text h2 {
    color: var(--secondary-text-color);
    margin-bottom: 20px;
}

.cta_section_text p {
    font-family: 'Kodchasan';
    line-height: 160%;
    text-align: justify;
}

.cta-button-wrap {
    margin-top: 30px;
    display: flex;
    justify-content: flex-start;
}

#idCtaButton {
    padding: 15px 28px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-family: 'Orbitron';
    font-size: clamp(0.95rem, 0.5vw + 0.5rem, 1.1rem);
    background-color: var(--secondary-text-color);
    color: var(--primary-text-color);
    border-radius: 0px 50px 50px;
    transition: 0.4s ease-in-out;
    box-shadow:
        inset 0 0 5px var(--primary-text-color),
        inset 2px 0 5px var(--primary-text-color),
        inset -5px 0 5px var(--secondary-text-color),
        0 0 5px var(--primary-text-color),
        -5px 0 10px var(--secondary-text-color),
        5px 0 10px var(--secondary-text-color);
}

#idCtaButton:hover {
    background-color: var(--secondary-bg-color);
    color: var(--primary-text-color);
}

@media (max-width:800px) {
    .cta_section_container {
        margin-top: 3%;
        flex-direction: column;
    }

    .cta_section_text {
        width: 85%;
        margin: auto;
    }

    .cta_section_text h2 {
        margin: 3% 0;
    }

    .cta_section_text p {
        margin: 3% 0;
    }

    .cta-button-wrap {
        width: 100%;
        justify-content: center;
    }

    #idCtaButton {
        width: 70%;
        font-weight: 600;
    }
}