/* Styles pour la section CTA finale - Design basé sur consultant-seo-paris.html */

.final-cta {
    background: #f8f9fa;
    border: 2px solid darkorange;
    color: #333333;
    padding: 50px 30px;
    border-radius: 15px;
    text-align: center;
    margin: 50px 0;
}

.final-cta h2 {
    color: #2c3e50;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.1em;
    margin-bottom: 30px;
}

/* Style pour le bouton CTA */
.final-cta .cta-button {
    background: darkorange;
    color: white;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s ease;
    margin: 10px;
}

.final-cta .cta-button:hover {
    background: #e8860a;
    transform: scale(1.05);
    color: white;
    text-decoration: none;
}

/* Responsive - version mobile */
@media (max-width: 768px) {
    .final-cta {
        padding: 30px 20px;
        margin: 30px 0;
    }
    
    .final-cta h2 {
        font-size: 1.5em;
    }
    
    .final-cta p {
        font-size: 1em;
    }
    
    .final-cta .cta-button {
        font-size: 16px;
        padding: 14px 28px;
    }
}