/* Pourquoi Page Specific Styles */
.pourquoi-hero {
    background: linear-gradient(rgba(0, 102, 255, 0.8), rgba(0, 102, 255, 0.9)), url('../images/pourquoi-bg.jpg') center/cover;
    color: white;
    text-align: center;
    padding: 40px 0 40px;
    margin-top: var(--header-height);
}

.pourquoi-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

.pourquoi-hero .subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
}

.intro-section, .inequality-section, .daily-struggle, 
.student-section, .benefits-section,
.numbers-section, .cta-section {
    padding: 50px 0;
}

.intro-section {
    background-color: white;
    text-align: center;
}

.intro-section h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.highlight-box {
    background-color: #f0f7ff;
    border-left: 4px solid var(--primary);
    padding: 25px;
    margin: 30px auto;
    max-width: 800px;
    border-radius: 0 8px 8px 0;
}

.how-section {
    background-color: #f9f9f9;
    padding: 60px 0;
    text-align: center;
}

.how-section h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.inequality-section {
    background-color: white;
}

.daily-struggle {
    background-color: #f9f9f9;
}

.student-section {
    background-color: white;
}

.benefits-section {
    background-color: #f9f9f9;
}

.numbers-section {
    background-color: white;
}

.cta-section {
    background-color: var(--primary);
    color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.cta-section .section-header h2 {
    color: white;
}

.content-box {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.highlight-text {
    background-color: #f0f7ff;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
    font-weight: 500;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px auto;
    max-width: 900px;
}

.stat-card {
    background-color: var(--primary);
    color: white;
    padding: 25px 15px;
    border-radius: 8px;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-desc {
    font-size: 0.9rem;
}

.feature-list {
    list-style-type: none;
    padding: 0;
    margin: 30px 0;
}

.feature-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.feature-list li:before {
    content: "•";
    color: var(--primary);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -3px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
}

.benefit-card i {
    color: var(--primary);
    font-size: 1.5rem;
    margin-right: 15px;
    margin-top: 3px;
}

.data-tables {
    max-width: 1000px;
    margin: 50px auto;
}

.data-table {
    margin-bottom: 50px;
}

.data-table h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--primary);
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

th, td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: var(--primary);
    color: white;
}

tr:nth-child(even) {
    background-color: #f9f9f9;
}

.bullet-points {
    max-width: 800px;
    margin: 50px 0;
}

.bullet-points h3 {
    color: var(--primary);
    margin: 30px 0 15px;
}

.bullet-points ul {
    padding-left: 20px;
}

.bullet-points li {
    margin-bottom: 10px;
}

.heart-icon {
    font-size: 1.5rem;
    text-align: center;
    margin-top: 20px;
}

.sources {
    margin: 40px auto;
    max-width: 800px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.sources h3 {
    margin-bottom: 10px;
}

.sources ul {
    list-style-type: none;
    padding: 0;
}

.sources li {
    margin-bottom: 5px;
}

.cta-content {
    text-align: center;
}

.final-cta {
    margin: 40px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .pourquoi-hero {
        padding: 100px 0 60px;
    }
    
    .pourquoi-hero h1 {
        font-size: 2.2rem;
    }
    
    .intro-section, .inequality-section, .daily-struggle, 
    .student-section, .benefits-section,
    .numbers-section, .cta-section {
        padding: 60px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    table {
        display: block;
        overflow-x: auto;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}