.cta-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.cta-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    background: #fff;
    min-height: 400px;
}

.cta-image-wrapper {
    position: relative;
    overflow: hidden;
}

.cta-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.cta-image-wrapper:hover .cta-image {
    transform: scale(1.05);
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(6, 116, 153, 0.3), rgba(0, 0, 0, 0.2));
}

.cta-content {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-heading {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-text {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    flex: 1;
    white-space: nowrap;
}

.primary-cta {
    background-color: #067499;
    color: #fff;
}

.primary-cta:hover {
    background-color: #045a6d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(6, 116, 153, 0.3);
}

.secondary-cta {
    background-color: transparent;
    color: #067499;
    border-color: #067499;
}

.secondary-cta:hover {
    background-color: #045a6d;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(6, 116, 153, 0.3);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.cta-btn:hover .btn-icon {
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta-container {
        grid-template-columns: 1fr;
    }
    
    .cta-image-wrapper {
        min-height: 250px;
    }
    
    .cta-content {
        padding: 40px 30px;
    }
    
    .cta-heading {
        font-size: 28px;
    }
    
    .cta-text {
        font-size: 15px;
        margin-bottom: 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .cta-section {
        margin: 40px auto;
    }
    
    .cta-content {
        padding: 30px 24px;
    }
    
    .cta-heading {
        font-size: 24px;
    }
    
    .cta-btn {
        padding: 14px 20px;
        font-size: 15px;
    }
}