/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo a {
    font-size: 1.5rem;
    font-weight: bold;
    color: #c00000;
    text-decoration: none;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover,
.nav a.active {
    color: #c00000;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #c00000 0%, #e31837 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Boutons CTA */
.cta-button {
    display: inline-block;
    background-color: #ffffff;
    color: #c00000;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s;
}

.cta-button:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

/* Sections */
.avantages,
.processus,
.services-detail,
.tarifs-grid,
.faq-content,
.blog-content {
    padding: 4rem 0;
}

.avantages h2,
.processus h2,
.teaser-tarifs h2,
.faq-preview h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #333;
}

/* Grille des avantages */
.avantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.avantage {
    text-align: center;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s;
}

.avantage:hover {
    transform: translateY(-5px);
}

.avantage h3 {
    color: #c00000;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Processus */
.etapes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.etape {
    text-align: center;
    padding: 1.5rem;
}

.numero {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: #c00000;
    color: white;
    border-radius: 50%;
    line-height: 50px;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.etape h3 {
    margin-bottom: 0.5rem;
    color: #333;
}

/* Pages internes */
.page-header {
    background-color: #f8f9fa;
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #333;
}

.page-header p {
    font-size: 1.1rem;
    color: #666;
}

/* Services */
.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.service-card h2 {
    color: #c00000;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.service-card li {
    margin-bottom: 0.5rem;
}

/* Tarifs */
.tarifs-grid .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.forfait-card {
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: transform 0.3s;
}

.forfait-card:hover {
    transform: translateY(-5px);
}

.forfait-card.popular {
    border-color: #c00000;
    position: relative;
}

.badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #c00000;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.forfait-card h2 {
    color: #333;
    margin-bottom: 1rem;
}

.prix {
    font-size: 2.5rem;
    font-weight: bold;
    color: #c00000;
    margin-bottom: 0.5rem;
}

.prix-detail {
    color: #666;
    margin-bottom: 1.5rem;
}

.forfait-card ul {
    text-align: left;
    margin: 1.5rem 0;
}

.forfait-card li {
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
}

/* Détails tarifs */
.tarifs-details {
    background-color: #f8f9fa;
    padding: 3rem 0;
}

.tarifs-details h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.service-tarif {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.tarif-list {
    display: grid;
    gap: 1rem;
}

.tarif-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 5px;
}

.tarif-item span:last-child {
    font-weight: bold;
    color: #c00000;
}

.tarif-info {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
}

.tarif-info h3 {
    margin-bottom: 1rem;
    color: #333;
}

.tarif-info ul {
    padding-left: 1.5rem;
}

.tarif-info li {
    margin-bottom: 0.5rem;
}

/* FAQ */
.faq-category {
    margin-bottom: 3rem;
}

.faq-category h2 {
    color: #c00000;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.faq-item {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.faq-item h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-preview .faq-item {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.link-secondary {
    color: #c00000;
    text-decoration: none;
    font-weight: bold;
}

.link-secondary:hover {
    text-decoration: underline;
}

/* Blog */
.blog-post {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid #e0e0e0;
}

.blog-post h2 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.blog-meta {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.blog-post h3 {
    color: #c00000;
    margin: 1.5rem 0 1rem 0;
    font-size: 1.2rem;
}

.blog-post ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.blog-post li {
    margin-bottom: 0.5rem;
}

/* Sections CTA */
.teaser-tarifs,
.faq-preview,
.cta-section {
    background-color: #f8f9fa;
    padding: 3rem 0;
    text-align: center;
}

.teaser-tarifs p,
.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
}

/* Footer */
.footer {
    background-color: #333;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #c00000;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #ccc;
}

/* Responsive */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav ul {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .avantages-grid {
        grid-template-columns: 1fr;
    }
    
    .etapes {
        grid-template-columns: 1fr;
    }
    
    .tarifs-grid .container {
        grid-template-columns: 1fr;
    }
    
    .tarif-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .avantages,
    .processus,
    .services-detail,
    .tarifs-grid,
    .faq-content,
    .blog-content {
        padding: 2rem 0;
    }
    
    .service-card,
    .forfait-card,
    .blog-post {
        padding: 1.5rem;
    }
    
    .prix {
        font-size: 2rem;
    }
}