/* Compare CTA Section */
.compare-cta-section {
    background: white;
}

.compare-cta-banner {
    background: linear-gradient(135deg, #3B6ED6 0%, #1A3263 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
}

.compare-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.compare-cta-title {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.compare-cta-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.compare-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.compare-cta-btn {
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    white-space: nowrap;
}

.compare-cta-btn-primary {
    background: white;
    color: #1A3263;
}

.compare-cta-btn-primary:hover {
    background: #F3F4F6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.compare-cta-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.compare-cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .compare-cta-title {
        font-size: 1.75rem;
    }

    .compare-cta-subtitle {
        font-size: 1rem;
    }

    .compare-cta-btn {
        padding: 0.875rem 1.75rem;
        font-size: 0.9375rem;
    }
}

@media (max-width: 768px) {
    .compare-cta-banner {
        padding: 2rem 1.5rem;
        border-radius: 15px;
    }

    .compare-cta-title {
        font-size: 1.5rem;
    }

    .compare-cta-subtitle {
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
    }

    .compare-cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .compare-cta-btn {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }
}