/* seo.css */
.seo-header {
    padding: 80px 5%;
    background: linear-gradient(135deg, var(--mjd-blue-dark) 0%, var(--mjd-blue-main) 100%);
    color: white;
    text-align: center;
}

.seo-header h1 { font-size: 48px; margin-bottom: 20px; font-weight: 800; }
.seo-header p { font-size: 20px; opacity: 0.9; max-width: 800px; margin: 0 auto; }

.seo-container {
    max-width: 1000px;
    margin: -50px auto 80px auto;
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    position: relative;
    z-index: 10;
}

.seo-section { margin-bottom: 60px; }
.seo-section h2 { color: var(--mjd-blue-dark); font-size: 32px; margin-bottom: 25px; display: flex; align-items: center; gap: 15px; }

.seo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.seo-card {
    background: #f8fafc;
    padding: 30px;
    border-radius: 12px;
    border-left: 5px solid var(--mjd-blue-main);
}

.seo-card h3 { color: var(--mjd-blue-main); margin-bottom: 15px; font-size: 20px; }
.seo-card p { font-size: 15px; color: #555; line-height: 1.6; }

/* Code / Exemple Style */
.seo-example {
    background: #2d3436;
    color: #fab1a0;
    padding: 25px;
    border-radius: 8px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
    margin: 20px 0;
}

.seo-example span { color: #55efc4; } /* Balises */
.seo-example em { color: #fff; font-style: normal; } /* Contenu */

.cta-box {
    text-align: center;
    background: var(--mjd-blue-light);
    padding: 40px;
    border-radius: 15px;
    margin-top: 40px;
}

.cta-box h3 { color: var(--mjd-blue-dark); margin-bottom: 20px; }