.tnc-container {
    display: flex;
    align-items: center;
    gap: 100px;
    justify-content: space-between;
}

.text-with-callout-2 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.tnc_wc_title {
    font-size: 30px;
    font-weight: 600;
    text-transform: none;
}

.tnc_wc_desc {
    font-size: 16px;
}

a.tnc_nc_btn {
    display: inline-block;
    padding: 15px 20px;
    border-radius: 50px;
    margin: 50px 0 0 50px;
    box-shadow: 0 3px 5px rgba(0,0,0,0.3);
    text-decoration: none !important;
    text-align: center ;
}

/* Tablet Responsive */

@media(max-width: 1024px){
    .tnc-container {
        gap: 5%;
        flex-wrap: wrap;
    }

    .tnc-wide-col {
        width: 58%;
    }

    .tnc-narrow-col {
        width: 37%;
    }
}

/* Mobile Responsive */

@media(max-width: 769px){
    .tnc-narrow-col {
        width: 100%;
        margin-top: 50px;
    }

    .tnc-wide-col {
        width: 100%;
    }

    h2.tnc_wc_title {
        font-size: 25px;
        font-weight: 600;
        line-height: 1.4em;
    }

    .tnc_wc_desc {
        font-size: 16px;
        line-height: 1.5em;
    }

    a.tnc_nc_btn {
        padding: 20px 20px;
        display: block;
        text-align: center;
        margin-top: 30px;
        font-size: 18px;
    }
}