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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Variables CSS */
:root {
    --primary-color: #8B0000;
    --secondary-color: #FFD700;
    --accent-color: #2C5530;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --border-radius: 8px;
}

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--secondary-color);
    background: var(--white);
    padding: 2px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Section principale */
.hero {
    margin-top: 80px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    padding: 4rem 2rem;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--text-color);
}

.btn-primary:hover {
    background: #e6c200;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.hero-image {
    text-align: center;
}

.seal-img {
    max-width: 300px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
    margin-bottom: 1rem;
}

.additional-seals {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.additional-seal {
    max-width: 120px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.2));
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.additional-seal:hover {
    transform: scale(1.1);
}

.certification-img {
    max-width: 150px;
    width: 100%;
    height: auto;
    border: 2px solid var(--secondary-color);
    border-radius: var(--border-radius);
    padding: 0.5rem;
    background: var(--white);
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--secondary-color);
    background: var(--white);
    padding: 2px;
}

/* Sections */
.section {
    padding: 5rem 2rem;
}

.bg-light {
    background: var(--light-bg);
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
}

/* Info cards */
.tribunal-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.info-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

/* Déclaration */
.declaration-content {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.declaration-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--light-bg);
}

.date-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.key-findings h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

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

.finding-item {
    padding: 1.5rem;
    border-left: 4px solid var(--secondary-color);
    background: var(--light-bg);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.finding-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.finding-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

.expert-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary-color);
}

.expert-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.expert-header i {
    font-size: 2rem;
    color: var(--primary-color);
}

.expert-header h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.expert-title {
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.expert-description {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.expert-opinion {
    background: var(--light-bg);
    padding: 1rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--secondary-color);
}

.expert-opinion strong {
    color: var(--primary-color);
}

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

.doc-category {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.doc-category h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.doc-list {
    list-style: none;
}

.doc-list li {
    margin-bottom: 1rem;
}

.doc-list a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-color);
    padding: 0.5rem;
    border-radius: var(--border-radius);
    transition: background 0.3s ease;
}

.doc-list a:hover {
    background: var(--light-bg);
    color: var(--primary-color);
}

.doc-list i {
    color: var(--primary-color);
}

/* Conclusion */
.conclusion-section {
    background: var(--primary-color);
    color: var(--white);
    padding: 4rem 2rem;
}

.conclusion-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.conclusion-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

blockquote {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 2rem;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--secondary-color);
}

.tribunal-statement {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.signatures {
    text-align: center;
}

.signature-block {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: var(--border-radius);
    display: inline-block;
}

/* Footer */
footer {
    background: var(--text-color);
    color: var(--white);
    padding: 3rem 2rem 1rem;
}

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

.footer-section h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .tribunal-info {
        grid-template-columns: 1fr;
    }

    .findings-grid {
        grid-template-columns: 1fr;
    }

    .experts-grid {
        grid-template-columns: 1fr;
    }

    .documents-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        justify-content: center;
    }

    .btn {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .section {
        padding: 3rem 1rem;
    }

    .declaration-content {
        padding: 2rem 1rem;
    }

    .hero {
        padding: 2rem 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }
    
    .seal-img {
        max-width: 250px;
    }
    
    .additional-seals {
        gap: 0.5rem;
    }
    
    .additional-seal {
        max-width: 80px;
    }
    
    .certification-img {
        max-width: 120px;
    }
    
    .logo-img {
        width: 40px;
        height: 40px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.info-card,
.expert-card,
.finding-item {
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Sections détaillées */
.detailed-sections {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.detail-section {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border-left: 5px solid var(--primary-color);
}

.detail-section h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--secondary-color);
}

.detail-section h4 {
    color: var(--accent-color);
    margin: 1.5rem 0 1rem 0;
    font-size: 1.3rem;
}

.detail-section h5 {
    color: var(--primary-color);
    margin: 1rem 0 0.5rem 0;
    font-size: 1.1rem;
}

.evidence-content {
    line-height: 1.8;
}

.evidence-content p {
    margin-bottom: 1rem;
}

.evidence-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.evidence-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contamination-details,
.harmful-effects,
.speicher-study,
.genetic-integration,
.adverse-events-pregnancy,
.censorship-analysis {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 1.5rem 0;
    border-left: 3px solid var(--secondary-color);
}

.detailed-findings {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-top: 1.5rem;
    border-left: 4px solid var(--secondary-color);
}

.detailed-findings h5 {
    color: var(--primary-color);
    margin: 1.5rem 0 1rem 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.detailed-findings blockquote {
    background: rgba(139, 0, 0, 0.1);
    border-left: 4px solid var(--primary-color);
    padding: 1rem;
    margin: 1rem 0;
    font-style: italic;
    color: var(--primary-color);
}

.disease-list {
    columns: 2;
    column-gap: 2rem;
    margin: 1rem 0;
}

.disease-list li {
    break-inside: avoid;
    margin-bottom: 0.8rem;
}

.weapons-classification {
    background: rgba(139, 0, 0, 0.05);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    border: 2px solid var(--primary-color);
}

.weapons-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.weapons-list li {
    background: var(--white);
    padding: 1rem;
    border-radius: var(--border-radius);
    border-left: 3px solid var(--secondary-color);
    font-weight: 500;
    color: black;
}

.final-declaration {
    background: var(--primary-color);
    color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
}

.final-declaration h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.legal-references {
    background: var(--accent-color);
    color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
}

.legal-references h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.legal-references ul {
    margin: 1rem 0;
}

.legal-references li {
    margin-bottom: 0.5rem;
}

.signature-images {
    margin-top: 1rem;
    font-style: italic;
    text-align: left;
}

.detailed-conclusion {
    margin: 2rem 0;
}

.detailed-conclusion .tribunal-statement {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--secondary-color);
}

/* Responsive pour les sections détaillées */
@media (max-width: 768px) {
    .detail-section {
        padding: 1.5rem;
    }
    
    .detailed-findings {
        padding: 1.5rem;
    }
    
    .disease-list {
        columns: 1;
    }
    
    .weapons-list {
        grid-template-columns: 1fr;
    }
    
    .final-declaration,
    .legal-references {
        padding: 1.5rem;
    }
}

/* Print styles pour les nouvelles sections */
@media print {
    .detailed-sections {
        page-break-inside: avoid;
    }
    
    .detail-section {
        page-break-inside: avoid;
        margin-bottom: 2rem;
    }
}

/* Document officiel */
.official-document {
    background: var(--white);
    border: 3px solid var(--primary-color);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: 2rem auto;
    max-width: 800px;
}

.document-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--secondary-color);
}

.document-seals {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.document-seal {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid var(--secondary-color);
    padding: 5px;
    background: var(--white);
}

.certification-badge {
    text-align: right;
}

.cert-badge {
    max-width: 150px;
    height: auto;
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    padding: 0.5rem;
    background: var(--light-bg);
}

.document-content h3 {
    text-align: center;
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.document-content h4 {
    text-align: center;
    color: var(--accent-color);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.document-info {
    background: var(--light-bg);
    padding: 1rem;
    border-radius: var(--border-radius);
    margin: 1.5rem 0;
    border-left: 4px solid var(--secondary-color);
}

.document-info p {
    margin: 0.5rem 0;
    font-weight: 500;
}

.whereas-section {
    margin: 2rem 0;
    line-height: 1.8;
}

.whereas-section p {
    margin-bottom: 1rem;
    text-align: justify;
}

.whereas-section strong {
    color: var(--primary-color);
}

.contact-details {
    background: var(--accent-color);
    color: var(--white);
    padding: 1rem;
    border-radius: var(--border-radius);
    text-align: center;
    margin-top: 2rem;
}

.contact-details a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* Liens externes */
.external-links-section {
    margin-top: 1rem;
}

.external-links-section h4 {
    color: var(--primary-color);
    margin: 1.5rem 0 1rem 0;
    font-size: 1.2rem;
    padding-left: 1rem;
    border-left: 3px solid var(--secondary-color);
    background: var(--light-bg);
    padding: 0.5rem 0 0.5rem 1rem;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--secondary-color);
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.contact-item strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Responsive styles for document officiel and other sections */
@media (max-width: 768px) {
    .official-document {
        padding: 2rem;
        margin: 1rem;
    }
    
    .document-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .document-seals {
        justify-content: center;
    }
    
    .document-seal {
        width: 60px;
        height: 60px;
    }
    
    .cert-badge {
        max-width: 120px;
    }
    
    .document-content h3 {
        font-size: 1.5rem;
    }
    
    .document-content h4 {
        font-size: 1.2rem;
    }
    
    .contact-info {
        gap: 1rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .contact-item i {
        margin-top: 0;
    }
    
    .external-links-section h4 {
        font-size: 1.1rem;
        padding: 0.4rem 0 0.4rem 0.8rem;
    }
}

/* Styles pour les onglets de documents */
.documents-tabs {
    max-width: 1000px;
    margin: 0 auto;
}

.tab-navigation {
    display: flex;
    background: var(--white);
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    box-shadow: var(--shadow);
    margin-bottom: 0;
    overflow-x: auto;
}

.tab-button {
    background: none;
    border: none;
    padding: 1rem 1.5rem;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-color);
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex: 1;
    min-width: 140px;
}

.tab-button:hover {
    background-color: var(--light-bg);
    color: var(--primary-color);
}

.tab-button.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-bottom-color: var(--secondary-color);
    font-weight: 600;
}

.tab-content {
    background: var(--white);
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    box-shadow: var(--shadow);
    min-height: 400px;
}

.tab-panel {
    display: none;
    padding: 2rem;
    animation: fadeIn 0.3s ease-in-out;
}

.tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-panel h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--secondary-color);
}

.tab-panel .doc-list {
    list-style: none;
    padding: 0;
}

.tab-panel .doc-list li {
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.tab-panel .doc-list li:hover {
    background: #e9ecef;
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.tab-panel .doc-list a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tab-panel .doc-list a:hover {
    color: var(--primary-color);
}

.tab-panel .doc-list i {
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* Styles spéciaux pour les sections de liens externes */
.external-links-section {
    margin-top: 1rem;
}

.external-links-section h4 {
    color: var(--accent-color);
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0 0.5rem 1rem;
    background: linear-gradient(45deg, var(--light-bg), #e9ecef);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-color);
}

.external-links-section h4:first-child {
    margin-top: 0;
}

/* Styles pour la section contact dans l'onglet */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.contact-item strong {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Responsive pour les onglets */
@media (max-width: 768px) {
    .tab-navigation {
        flex-direction: column;
    }
    
    .tab-button {
        text-align: left;
        border-bottom: none;
        border-right: 3px solid transparent;
        padding: 0.75rem 1rem;
    }
    
    .tab-button.active {
        border-right-color: var(--secondary-color);
        border-bottom-color: transparent;
    }
    
    .tab-panel {
        padding: 1.5rem;
    }
    
    .tab-panel h3 {
        font-size: 1.5rem;
    }
    
    .contact-info {
        gap: 1rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .contact-item i {
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    .tab-button {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .tab-panel {
        padding: 1rem;
    }
    
    .external-links-section h4 {
        font-size: 1.1rem;
        padding: 0.4rem 0 0.4rem 0.8rem;
    }
}


/* Styles spécifiques pour les onglets des experts */
.experts-tabs {
    max-width: 1000px;
    margin: 0 auto;
}

.experts-tabs .tab-navigation {
    background: linear-gradient(135deg, var(--primary-color), #a01010);
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    box-shadow: var(--shadow);
    margin-bottom: 0;
    overflow-x: auto;
}

.experts-tabs .tab-button {
    background: transparent;
    border: none;
    padding: 1rem 1.5rem;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex: 1;
    min-width: 160px;
}

.experts-tabs .tab-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transform: translateY(-2px);
}

.experts-tabs .tab-button.active {
    background-color: var(--white);
    color: var(--primary-color);
    border-bottom-color: var(--secondary-color);
    font-weight: 600;
    transform: translateY(-2px);
}

.experts-tabs .tab-content {
    background: var(--white);
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    box-shadow: var(--shadow);
    min-height: 500px;
}

.experts-tabs .tab-panel {
    display: none;
    padding: 2rem;
    animation: expertFadeIn 0.4s ease-in-out;
}

.experts-tabs .tab-panel.active {
    display: block;
}

@keyframes expertFadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Styles pour les cartes d'experts dans les onglets */
.experts-tabs .expert-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.experts-tabs .expert-header {
    background: linear-gradient(135deg, var(--primary-color), #a01010);
    color: var(--white);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.experts-tabs .expert-header i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.experts-tabs .expert-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.experts-tabs .expert-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-color);
    margin: 1.5rem 1.5rem 1rem 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--secondary-color);
}

.experts-tabs .expert-description {
    padding: 0 1.5rem;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.experts-tabs .expert-opinion {
    padding: 0 1.5rem 1.5rem;
}

.experts-tabs .expert-opinion > p:first-child {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.experts-tabs .detailed-findings {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: var(--border-radius);
    border: 1px solid #e9ecef;
}

.experts-tabs .detailed-findings h5 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 1.5rem 0 0.8rem 0;
    padding-bottom: 0.3rem;
    border-bottom: 1px solid var(--secondary-color);
}

.experts-tabs .detailed-findings h5:first-child {
    margin-top: 0;
}

.experts-tabs .detailed-findings p {
    margin-bottom: 1rem;
    text-align: justify;
    line-height: 1.7;
}

.experts-tabs .detailed-findings blockquote {
    background: var(--white);
    border-left: 4px solid var(--secondary-color);
    margin: 1.5rem 0;
    padding: 1rem 1.5rem;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.experts-tabs .detailed-findings blockquote p {
    margin: 0;
    font-style: italic;
    color: var(--accent-color);
    font-weight: 500;
}

.experts-tabs .disease-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.experts-tabs .disease-list li {
    padding: 0.8rem;
    margin-bottom: 0.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    border-left: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.experts-tabs .disease-list li:hover {
    background: #e9ecef;
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Responsive pour les onglets des experts */
@media (max-width: 768px) {
    .experts-tabs .tab-navigation {
        flex-direction: column;
    }
    
    .experts-tabs .tab-button {
        text-align: left;
        border-bottom: none;
        border-right: 3px solid transparent;
        padding: 0.75rem 1rem;
        min-width: auto;
    }
    
    .experts-tabs .tab-button.active {
        border-right-color: var(--secondary-color);
        border-bottom-color: transparent;
    }
    
    .experts-tabs .tab-panel {
        padding: 1.5rem;
    }
    
    .experts-tabs .expert-header {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .experts-tabs .expert-header i {
        font-size: 1.5rem;
    }
    
    .experts-tabs .expert-header h3 {
        font-size: 1.3rem;
    }
    
    .experts-tabs .expert-title,
    .experts-tabs .expert-description,
    .experts-tabs .expert-opinion {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .experts-tabs .detailed-findings {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .experts-tabs .tab-button {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .experts-tabs .tab-panel {
        padding: 1rem;
    }
    
    .experts-tabs .expert-header {
        padding: 0.8rem;
    }
    
    .experts-tabs .expert-title,
    .experts-tabs .expert-description,
    .experts-tabs .expert-opinion {
        padding-left: 0.8rem;
        padding-right: 0.8rem;
    }
    
    .experts-tabs .detailed-findings {
        padding: 0.8rem;
    }
    
    .experts-tabs .detailed-findings h5 {
        font-size: 1rem;
    }
}
