/* Feature CTA Block */
.feature-cta {
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.feature-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(55, 85, 107, 0.9) 0%, rgba(74, 107, 124, 0.85) 100%);
}

.feature-cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.feature-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.container h2.feature-cta-title {
    margin-top: 0!important;
    font-size: 36px!important;
    font-weight: 700!important;
    color: white;
    margin-bottom: 20px!important;
    line-height: 1.2!important;
}

.feature-cta-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 32px;
}

.feature-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.feature-cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none!important;
    transition: all 0.3s ease;
}

.feature-cta-btn-primary {
    background: linear-gradient(135deg, #ea6463 0%, #f47776 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(234, 100, 99, 0.4);
}

.feature-cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 100, 99, 0.5);
    color: white;
    text-decoration: none;
}

.feature-cta-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.feature-cta-btn-secondary:hover {
    background: white;
    color: #37556b;
    border-color: white;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .feature-cta-title {
        font-size: 28px;
    }

    .feature-cta-description {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .feature-cta-title {
        font-size: 24px;
    }

    .feature-cta-btn {
        width: 100%;
        justify-content: center;
    }
}
