.aivah-cta-container {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
    box-sizing: border-box;
}

.aivah-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.aivah-cta-layout {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    z-index: 2;
    box-sizing: border-box;
}

/* Position Switches */
.aivah-cta-pos-left .aivah-cta-layout {
    justify-content: flex-start;
}

.aivah-cta-pos-right .aivah-cta-layout {
    justify-content: flex-end;
}

/* Content Column */
.aivah-cta-content-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    text-align: left;
}

.aivah-cta-eyebrow {
    font-family: inherit;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #E85B24;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

.aivah-cta-heading {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    margin: 0 0 25px 0;
}

.aivah-cta-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #a8a8a9;
    margin: 0 0 40px 0;
}

.aivah-cta-desc p {
    margin: 0 0 15px 0;
}
.aivah-cta-desc p:last-child {
    margin-bottom: 0;
}

/* Buttons Row */
.aivah-cta-buttons-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: flex-start;
}

/* Inline Buttons Styling */
.aivah-cta-btn-1,
.aivah-cta-btn-2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border-style: solid;
    box-sizing: border-box;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
}

.aivah-cta-btn-icon-left {
    display: inline-flex;
    align-items: center;
    margin-right: 10px;
}

.aivah-cta-btn-icon-right {
    display: inline-flex;
    align-items: center;
    margin-left: 10px;
}

.aivah-cta-btn-icon-left svg,
.aivah-cta-btn-icon-right svg {
    fill: currentColor;
    width: 16px;
    height: 16px;
}

/* Mobile & Tablet Overrides */
@media (max-width: 1024px) {

    .aivah-cta-content-col {
        max-width: 100% !important;
        flex-basis: 100% !important;
    }

    .aivah-cta-heading {
        font-size: 38px;
    }
}

@media (max-width: 767px) {
    .aivah-cta-heading {
        font-size: 32px;
    }

    .aivah-cta-buttons-row {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 15px;
    }

    .aivah-cta-btn-1,
    .aivah-cta-btn-2 {
        width: 100%;
    }
}
