/* CTA Block with Two Columns Styles */
.cta-two-columns-section {
    position: relative;
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    width: 100%;
    margin: 0;
    overflow: hidden;
}

/* Dark overlay for better text visibility */
.cta-two-columns-section .cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.cta-two-columns-section .container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.cta-two-columns-section .cta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

/* Left column with title and content */
.cta-two-columns-section .cta-left-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.cta-two-columns-section .cta-title {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
}

.cta-two-columns-section .cta-content {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.cta-two-columns-section .cta-content p {
    margin-bottom: 0;
    color: #ffffff;
}

.cta-two-columns-section .cta-content ul,
.cta-two-columns-section .cta-content ol {
    margin-left: 20px;
    margin-bottom: 0;
}

.cta-two-columns-section .cta-content a {
    color: #ffffff;
    text-decoration: underline;
    transition: opacity 0.3s;
}

.cta-two-columns-section .cta-content a:hover {
    opacity: 0.8;
}

/* Right column with CTA button */
.cta-two-columns-section .cta-right-column {
    flex: 0 0 auto;
}

/* CTA Button */
.cta-two-columns-section .cta-button-container {
    margin: 0;
}

.cta-two-columns-section .cta-button {
    display: inline-block;
    background-color: var(--olive-light);
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cta-two-columns-section .cta-button:hover {
    background-color: var(--olive-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .cta-two-columns-section {
        padding: 60px 0;
    }
    
    .cta-two-columns-section .cta-title {
        font-size: 28px;
    }
    
    .cta-two-columns-section .cta-content {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .cta-two-columns-section {
        padding: 50px 0;
    }
    
    .cta-two-columns-section .cta-row {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .cta-two-columns-section .cta-left-column {
        align-items: center;
        width: 100%;
    }
    
    .cta-two-columns-section .cta-right-column {
        width: 100%;
    }
    
    .cta-two-columns-section .cta-title {
        font-size: 24px;
        text-align: center;
    }
    
    .cta-two-columns-section .cta-content {
        text-align: center;
    }
    
    .cta-two-columns-section .cta-button {
        padding: 12px 25px;
        font-size: 16px;
        display: block;
        width: 100%;
        text-align: center;
    }
} 