/* Page À propos - QaraNetwork */

/* Hero Section */
.about-hero {
    background: #249aa6;
    color: white;
    padding: 80px 20px;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 60px;
}

.hero-title {
    font-size: 4em;
    font-weight: 800;
    margin-bottom: 10px;
	color: yellow;
}

.hero-subtitle {
    font-size: 1.5em;
    opacity: 0.9;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3.5em;
    font-weight: bold;
    line-height: 1;
}

.stat-label {
    font-size: 1.2em;
    opacity: 0.9;
    margin-top: 10px;
}

/* Sections communes */
.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: #f8f9fa;
}

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

.section-header h2 {
    font-size: 2.8em;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.3em;
    color: black;
    max-width: 700px;
    margin: 0 auto;
}

/* Grids */
.sections-grid, .thematics-grid {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.sections-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.thematics-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.mission-content {
	text-align: center;
}

/* Cards */
.section-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eaeaea;
}

.section-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.card-icon {
    margin-bottom: 25px;
    color: #3498db;
}

.section-card h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #2c3e50;
}

.section-card p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.btn-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

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

/* Thematic Cards */
.thematic-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid #3498db;
}

.thematic-card h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.5em;
}

.thematic-card ul {
    list-style: none;
    padding: 0;
}

.thematic-card li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 25px;
}

.thematic-card li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.thematic-card li:last-child {
    border-bottom: none;
}

/* Values */
.values-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
}

.value-item h4 {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: #2c3e50;
}

/* CTA */
.about-cta {
    background: white;
    color: white;
    padding: 80px 20px;
    text-align: center;
    border-radius: 10px;
}

.cta-content h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2em;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #e74c3c;
    color: white;
}

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

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

.btn-secondary:hover {
    background: white;
    color: #2c3e50;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8em;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .section-header h2 {
        font-size: 2.2em;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .sections-grid,
    .thematics-grid,
    .values-list {
        grid-template-columns: 1fr;
    }
    
    .section-card,
    .thematic-card,
    .value-item {
        padding: 25px 20px;
    }
}