/* Questions-Réponses Page Styles */
body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.faq-hero {
    background: linear-gradient(135deg, rgba(0, 139, 139, 0.1) 0%, rgba(32, 178, 170, 0.05) 100%);
    padding: 80px 0 60px 0;
    text-align: center;
}

.faq-hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.faq-hero-content .lead {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Content Section */
.faq-content {
    padding: 80px 0;
    background-color: #ffffff;
}

.intro-section {
    text-align: center;
    margin-bottom: 60px;
}

.intro-section h2 {
    font-size: 36px;
    font-weight: 600;
    color: #008B8B;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.intro-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #008B8B, #20B2AA);
    border-radius: 2px;
}

.intro-text {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* FAQ List */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 139, 139, 0.1);
    border-color: #008B8B;
}

.faq-question {
    list-style: none;
    padding: 25px 30px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    background: linear-gradient(135deg, rgba(0, 139, 139, 0.05) 0%, rgba(32, 178, 170, 0.02) 100%);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    background: linear-gradient(135deg, rgba(0, 139, 139, 0.1) 0%, rgba(32, 178, 170, 0.05) 100%);
    color: #008B8B;
}

.faq-question i {
    color: #008B8B;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-question i {
    transform: rotate(180deg);
}

.faq-item[open] .faq-question {
    color: #008B8B;
    border-bottom: 2px solid rgba(0, 139, 139, 0.2);
}

.faq-answer {
    padding: 25px 30px;
    background: #ffffff;
}

.faq-answer p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.faq-answer ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.faq-answer ul li {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.faq-answer ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #008B8B;
    font-weight: bold;
    font-size: 20px;
    line-height: 1;
}

.faq-answer strong {
    color: #008B8B;
    font-weight: 600;
}

/* Remove default details marker */
.faq-item summary {
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-hero-content h1 {
        font-size: 32px;
    }
    
    .faq-hero-content .lead {
        font-size: 16px;
    }
    
    .intro-section h2 {
        font-size: 28px;
    }
    
    .faq-question {
        font-size: 16px;
        padding: 20px;
    }
    
    .faq-answer {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .faq-hero {
        padding: 60px 0 40px 0;
    }
    
    .faq-hero-content h1 {
        font-size: 26px;
    }
    
    .faq-content {
        padding: 60px 0;
    }
    
    .intro-section h2 {
        font-size: 24px;
    }
    
    .faq-question {
        font-size: 15px;
        padding: 18px;
        gap: 10px;
    }
    
    .faq-answer {
        padding: 18px;
    }
}
