/* ============================================
   PAGES - STYLES STATIQUES
   ============================================ */

/* ============================================
   1. LEGAL PAGES
   ============================================ */

.legal-content {
    background: white;
    padding: 2rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
}

.legal-content h5 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1a3b8a;
    font-weight: 700;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-content ul, .legal-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-content ul li, .legal-content ol li {
    margin-bottom: 0.5rem;
}

.legal-content hr {
    margin: 2rem 0;
}

.legal-content a {
    color: #1a3b8a;
}

.legal-content a:hover {
    text-decoration: underline;
}

/* ============================================
   2. FAQ
   ============================================ */

.faq-accordion .accordion-item {
    border: 1px solid #e9ecef;
    margin-bottom: 0.5rem;
    border-radius: 8px !important;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    padding: 1rem 1.25rem;
    font-weight: 600;
    background: white;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: #f8f9fa;
    color: #1a3b8a;
    box-shadow: none;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: #e9ecef;
}

.faq-accordion .accordion-body {
    padding: 1.25rem;
    background: white;
    line-height: 1.8;
}

/* ============================================
   3. BLOG ARTICLE
   ============================================ */

.blog-article .blog-content {
    font-size: 1.05rem;
    line-height: 1.8;
}

.blog-article .blog-content p {
    margin-bottom: 1.2rem;
}

.blog-article .blog-content h2,
.blog-article .blog-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-article .blog-content ul,
.blog-article .blog-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1.2rem;
}

.blog-article .blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0;
}

.blog-article .blog-content blockquote {
    border-left: 4px solid #1a3b8a;
    padding: 1rem 1.5rem;
    background: #f8f9fa;
    margin: 1.5rem 0;
    border-radius: 4px;
}

.blog-article .blog-content blockquote p {
    margin-bottom: 0;
}

.blog-article .blog-featured-image img {
    max-height: 400px;
    object-fit: cover;
}

.blog-article .blog-tags .badge {
    font-weight: 400;
}

.blog-article .blog-share .btn {
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
   4. CONTACT
   ============================================ */

.contact-info {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
}

.contact-info i {
    width: 20px;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 250px;
    border: none;
}

/* ============================================
   5. ABOUT
   ============================================ */

.about-values .value-card {
    padding: 1.5rem 1rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.about-values .value-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.about-values .value-card i {
    font-size: 2rem;
    color: #1a3b8a;
}

.about-team .team-card {
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.about-team .team-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.about-timeline {
    position: relative;
    padding-left: 30px;
}

.about-timeline .timeline-item {
    position: relative;
    padding: 0 0 2rem 20px;
    border-left: 2px solid #e9ecef;
}

.about-timeline .timeline-item:last-child {
    border-left: 2px solid transparent;
    padding-bottom: 0;
}

.about-timeline .timeline-badge {
    position: absolute;
    left: -35px;
    top: 0;
    background: #1a3b8a;
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
}

/* ============================================
   6. RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .legal-content {
        padding: 1.5rem;
    }
    
    .blog-article .blog-content {
        font-size: 0.95rem;
    }
    
    .blog-article .blog-featured-image img {
        max-height: 250px;
    }
    
    .about-timeline {
        padding-left: 20px;
    }
    
    .about-timeline .timeline-item {
        padding-left: 15px;
    }
    
    .about-timeline .timeline-badge {
        left: -30px;
        width: 24px;
        height: 24px;
        font-size: 0.55rem;
    }
}

@media (max-width: 576px) {
    .legal-content {
        padding: 1rem;
    }
    
    .legal-content h5 {
        font-size: 1rem;
    }
    
    .blog-article .blog-content {
        font-size: 0.9rem;
    }
    
    .blog-article .blog-content h2 {
        font-size: 1.3rem;
    }
    
    .blog-article .blog-content h3 {
        font-size: 1.1rem;
    }
}