/* Standardized CTA Button Styles */
/* These styles should be used consistently across all CTA sections */

.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #28503F 0%, #6dd5b8 100%);
    color: #fff;
    text-align: center;
}

.cta-section h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.cta-section p {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Primary CTA Button - Matches custom-quotes.html styling */
.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: #fff;
    color: #28503F;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.cta-btn-primary:hover {
    background: #f8f8f8;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(40, 80, 63, 0.3);
}

/* Secondary CTA Button */
.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cta-btn-secondary:hover {
    background: #fff;
    color: #28503F;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta-section {
        padding: 3rem 0;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}