/* ------------------------------
   SECTION: CALL TO ACTION
------------------------------ */

.section-call-to-action {
    background: #951739;
    padding: 80px 60px;
    margin: 60px auto;
}

.section-call-to-action-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left Column (Image) */
.section-call-to-action-col-image {
    flex: 1 1 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-call-to-action-image img {
    height: auto;
    display: block;
    width: 100%;
}


/* Right Column (Text) */
.section-call-to-action-col-content {
    flex: 1 1 50%;
    text-align: left;
    color: #fff;
}

.section-call-to-action-title {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #f2f2f2;
}

.section-call-to-action-subtitle {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 18px;
}

.section-call-to-action-text {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 25px;
}

/* Button */
.section-call-to-action-button .button-wrapper,
.section-call-to-action-button a.button {
    display: inline-block;
}

.button-wrapper .button {
    background: #fff;
    color: #951739;
    padding: 12px 26px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: 0.25s ease;
}

.button:hover {
    background: #fefefe;
    transform: translateY(-2px);
}

/* ------------------------------
   RESPONSIVE
------------------------------ */
@media (max-width: 900px) {

    .section-call-to-action-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .section-call-to-action-col-content {
        text-align: center;
    }

}

@media (max-width: 600px) {
    .section-call-to-action {
        padding: 50px 30px;
    }

    .section-call-to-action-title {
        font-size: 32px;
    }
}