/* ===== VARIABLES CSS ===== */
:root {
    /* Couleurs principales - Palette bleue LUMIA */
    --primary-color: #1E3A8A; /* Bleu profond */
    --secondary-color: #3B82F6; /* Bleu moderne */
    --accent-color: #60A5FA; /* Bleu clair */
    --accent-green: #10B981; /* Vert émeraude */
    --accent-blue: #0EA5E9; /* Bleu ciel */
    
    /* Couleurs neutres */
    --white: #FEFEFE;
    --off-white: #F8F6F0;
    --light-gray: #F5F5F5;
    --medium-gray: #E0E0E0;
    --dark-gray: #666666;
    --text-dark: #2C2C2C;
    --text-light: #555555;
    
    /* Dégradés */
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    --gradient-hero: linear-gradient(135deg, var(--primary-color), var(--accent-color), var(--accent-blue));
    
    /* Typographie */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Espacements */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    
    /* Ombres */
    --shadow-light: 0 2px 10px rgba(30, 58, 138, 0.1);
    --shadow-medium: 0 4px 20px rgba(30, 58, 138, 0.15);
    --shadow-heavy: 0 8px 30px rgba(30, 58, 138, 0.2);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===== RESET ET BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* ===== TYPOGRAPHIE ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== BOUTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    font-family: var(--font-secondary);
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

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

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

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--medium-gray);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--medium-gray);
    z-index: 1000;
    transition: all var(--transition-normal);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-light);
}

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

.logo-link {
    text-decoration: none;
}

.logo-text {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
}

.logo-accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

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

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: var(--transition-fast);
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.8) 0%, rgba(59, 130, 246, 0.6) 100%), 
                url('./img/Gemini_Generated_Image_fhgsqvfhgsqvfhgs.png') center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23D2691E" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.2;
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
    position: relative;
    z-index: 3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero .text-gradient {
    background: linear-gradient(135deg, #60A5FA, #93C5FD, #DBEAFE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

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

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-illustration {
    position: relative;
    width: 400px;
    height: 400px;
}

.floating-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-medium);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: float 6s ease-in-out infinite;
}

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

.floating-card span {
    font-weight: 600;
    color: var(--text-dark);
}

.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 60%;
    right: 20%;
    animation-delay: 1.5s;
}

.card-3 {
    bottom: 30%;
    left: 30%;
    animation-delay: 3s;
}

.card-4 {
    top: 10%;
    right: 10%;
    animation-delay: 4.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* ===== SECTIONS ===== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.recent-articles {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.article-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-normal);
    position: relative;
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.article-card.featured {
    grid-column: span 2;
}

.article-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.article-card.featured .article-image {
    height: 250px;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    font-weight: 500;
}

.article-content {
    padding: 1.5rem;
}

.article-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.article-card.featured .article-title {
    font-size: 1.6rem;
}

.article-excerpt {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.article-meta i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.article-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.article-link:hover {
    gap: 1rem;
}

.section-footer {
    text-align: center;
}

/* ===== NEWSLETTER ===== */
.newsletter {
    background: linear-gradient(135deg, #f97e3b75 0%, #f97e3b75 50%, #f97e3b75 100%);
    color: var(--white);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="newsletter-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23newsletter-pattern)"/></svg>');
    opacity: 0.1;
    z-index: 1;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

.newsletter-text {
    padding-right: 2rem;
}

.newsletter-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.newsletter-badge i {
    color: var(--white);
}

.newsletter-title {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    line-height: 1.2;
}

.newsletter-title .text-gradient {
    background: linear-gradient(45deg, #ff6b35, #f7931e, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.newsletter-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.newsletter-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
}

.benefit-item i {
    color: #4ade80;
    font-size: 1.1rem;
}

.newsletter-form-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #ff6b35;
    font-weight: 600;
}

.form-header p {
    color: var(--white);
    font-size: 0.95rem;
}

.form-fields {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: #ff6b35;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group label[for="interests"] {
    color: #ff6b35;
    font-weight: 600;
}

.input-wrapper {
    position: relative;
}

.form-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #ff6b35;
    z-index: 2;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px 12px 45px;
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.95);
    color: #1a1a2e;
    font-size: 1rem;
    transition: all var(--transition-normal);
    box-sizing: border-box;
}

.form-group input::placeholder {
    color: rgba(26, 26, 46, 0.6);
}

.form-group select {
    cursor: pointer;
    color: #1a1a2e;
}

.form-group select option {
    background: var(--white);
    color: #1a1a2e;
    padding: 8px;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #ff6b35;
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}


.interests-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.interest-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 107, 53, 0.15);
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: 1px solid rgba(255, 107, 53, 0.3);
    backdrop-filter: blur(5px);
}

.interest-item:hover {
    background: rgba(255, 107, 53, 0.25);
    border-color: rgba(255, 107, 53, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
}

.interest-item input[type="checkbox"] {
    display: none;
}

.interest-item .checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #ff6b35;
    border-radius: 4px;
    position: relative;
    transition: all var(--transition-fast);
    background: rgba(255, 107, 53, 0.1);
}

.interest-item input[type="checkbox"]:checked + .checkmark {
    background: #ff6b35;
    border-color: #ff6b35;
}

.interest-item input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -60%) rotate(45deg);
    width: 4px;
    height: 8px;
    border: solid rgb(245, 196, 0);
    border-width: 0 2px 2px 0;
}

.interest-text {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    line-height: 1.4;
}

.checkbox-label .checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #ff6b35;
    border-radius: 4px;
    position: relative;
    transition: all var(--transition-fast);
    margin-top: 2px;
    background: rgba(255, 107, 53, 0.1);
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #000000;
    border-color: #000000;
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.3);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -60%) rotate(45deg);
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
}

.checkbox-text {
    color: #000000;
    font-size: 0.9rem;
    line-height: 1.4;
    font-weight: 500;
}

.privacy-link,
.terms-link {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
}

.privacy-link:hover,
.terms-link:hover {
    text-decoration: underline;
}

.newsletter-submit {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    min-height: 48px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.newsletter-submit .btn-loading {
    display: none;
}

.newsletter-submit.loading .btn-text,
.newsletter-submit.loading .btn-icon {
    display: none;
}

.newsletter-submit.loading .btn-loading {
    display: block;
}

.form-footer {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.privacy-note,
.unsubscribe-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #ff6b35;
    font-weight: 500;
}

.privacy-note i,
.unsubscribe-note i {
    color: var(--success-color);
    font-size: 0.9rem;
}

.newsletter-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

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

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.8rem;
    color: #ff6b35;
    font-weight: 500;
}

.form-note {
    font-size: 0.9rem;
    color: #ff6b35;
    font-weight: 500;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, var(--text-dark) 0%, #1a1a1a 100%);
    color: var(--white);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="african-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23D2691E" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23african-pattern)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.footer-section {
    position: relative;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo .logo-text {
    color: var(--white);
    margin-bottom: 0.5rem;
    display: block;
    font-size: 1.8rem;
}

.footer-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.footer-location i {
    font-size: 0.8rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--white);
    text-decoration: none;
    transition: all var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(210, 105, 30, 0.3);
    border-color: var(--accent-color);
}

.footer-title {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.footer-title i {
    color: var(--accent-color);
    font-size: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0;
    border-radius: 4px;
}

.footer-links a i {
    width: 16px;
    font-size: 0.8rem;
    color: var(--accent-color);
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.contact-item i {
    color: var(--accent-color);
    width: 16px;
    font-size: 0.9rem;
}

.footer-newsletter {
    max-width: 300px;
}

.footer-newsletter-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.newsletter-input-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.footer-newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(210, 105, 30, 0.1);
}

.footer-newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.footer-newsletter-form button {
    padding: 12px 16px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-normal);
    font-size: 0.9rem;
}

.footer-newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(210, 105, 30, 0.3);
}

.newsletter-privacy {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

.newsletter-privacy i {
    color: var(--success-color);
    font-size: 0.7rem;
}

/* Section Contact Footer - Minimaliste */
.footer-contact {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.contact-simple {
    text-align: center;
}

.contact-simple p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0.5rem 0;
    font-size: 1rem;
    line-height: 1.5;
}

.contact-simple strong {
    color: var(--white);
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.footer-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-bottom-left p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.9rem;
}

.footer-africa {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    font-size: 0.8rem;
    font-weight: 500;
}

.footer-africa i {
    font-size: 0.9rem;
}

.footer-bottom-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-end;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom-links a i {
    font-size: 0.8rem;
    color: var(--accent-color);
}

.footer-bottom-links a:hover {
    color: var(--accent-color);
    transform: translateY(-1px);
}

.footer-language {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

.footer-language i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

/* ===== VARIATIONS DE FOOTER PAR PAGE ===== */

/* Footer Accueil - Alignement équilibré */
.footer-home .footer-content {
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
}

/* Footer Blog - Mise en avant des catégories */
.footer-blog .footer-content {
    grid-template-columns: 1.5fr 1fr 2fr 1fr 1.5fr;
}

.footer-blog .footer-categories {
    background: rgba(210, 105, 30, 0.05);
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid rgba(210, 105, 30, 0.1);
}

.footer-blog .footer-categories .footer-title {
    color: var(--accent-color);
}

/* Footer Article - Mise en avant de la newsletter */
.footer-article .footer-content {
    grid-template-columns: 1.5fr 1fr 1fr 1fr 2fr;
}

.footer-article .footer-newsletter {
    background: rgba(210, 105, 30, 0.05);
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid rgba(210, 105, 30, 0.1);
}

.footer-article .footer-newsletter .footer-title {
    color: var(--accent-color);
}

/* Footer About - Mise en avant du brand et contact */
.footer-about .footer-content {
    grid-template-columns: 2.5fr 1fr 1fr 2fr 1.5fr;
}

.footer-about .footer-brand {
    background: rgba(210, 105, 30, 0.05);
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid rgba(210, 105, 30, 0.1);
}

.footer-about .footer-contact-section {
    background: rgba(210, 105, 30, 0.05);
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid rgba(210, 105, 30, 0.1);
}

.footer-about .footer-brand .footer-title,
.footer-about .footer-contact-section .footer-title {
    color: var(--accent-color);
}

/* Footer Contact - Mise en avant du contact */
.footer-contact .footer-content {
    grid-template-columns: 1.5fr 1fr 1fr 2.5fr 1.5fr;
}

.footer-contact .footer-contact-section {
    background: rgba(210, 105, 30, 0.05);
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid rgba(210, 105, 30, 0.1);
}

.footer-contact .footer-contact-section .footer-title {
    color: var(--accent-color);
}

/* Responsive pour les variations */
@media (max-width: 768px) {
    .footer-home .footer-content,
    .footer-blog .footer-content,
    .footer-article .footer-content,
    .footer-about .footer-content,
    .footer-contact .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-blog .footer-categories,
    .footer-article .footer-newsletter,
    .footer-about .footer-brand,
    .footer-about .footer-contact-section,
    .footer-contact .footer-contact-section {
        background: transparent;
        border: none;
        padding: 0;
    }
    
    /* Section Contact Footer Responsive */
    .contact-simple p {
        font-size: 0.9rem;
    }
}

/* ===== ABOUT PAGE STYLES ===== */

/* About Hero Section - Style Contact */
.about-hero {
    padding: 120px 0 80px;
    background: var(--gradient-hero);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="about-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="3" fill="%23ff6b35" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23about-pattern)"/></svg>');
    opacity: 0.3;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.about-hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2rem;
}

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

.hero-stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.hero-stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

.hero-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.about-hero-visual {
    position: relative;
    height: 400px;
}

.african-pattern {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
}

.pattern-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--accent-color), #f7931e);
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    width: 120px;
    height: 120px;
    top: 20px;
    left: 20px;
    animation-delay: 0s;
}

.circle-2 {
    width: 80px;
    height: 80px;
    top: 120px;
    right: 20px;
    animation-delay: 2s;
}

.circle-3 {
    width: 60px;
    height: 60px;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 4s;
}

.pattern-line {
    position: absolute;
    background: linear-gradient(45deg, var(--accent-color), #f7931e);
    opacity: 0.1;
    animation: rotate 8s linear infinite;
}

.line-1 {
    width: 2px;
    height: 200px;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.line-2 {
    width: 2px;
    height: 150px;
    top: 100px;
    left: 30%;
    transform: translateX(-50%) rotate(45deg);
    animation-delay: 2s;
}

.line-3 {
    width: 2px;
    height: 150px;
    top: 100px;
    right: 30%;
    transform: translateX(50%) rotate(-45deg);
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Informations Générales */
.about-info {
    padding: var(--section-padding);
    background: var(--white);
}

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

.info-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 107, 53, 0.3);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--accent-color), #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.info-icon i {
    font-size: 1.5rem;
    color: white;
}

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

.info-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Section Notre Mission */
.about-mission {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.mission-text .section-title {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.mission-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.mission-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mission-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.mission-point:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.mission-point i {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--accent-color), #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.point-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.point-content p {
    color: var(--text-light);
    line-height: 1.6;
}

.mission-stats {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mission-stats h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Section Notre Histoire */
.about-story {
    padding: var(--section-padding);
    background: var(--white);
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-content .section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.story-timeline {
    position: relative;
    padding-left: 2rem;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(45deg, var(--accent-color), #f7931e);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    background: var(--accent-color);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--accent-color);
}

.timeline-date {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.6;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 107, 53, 0.1);
    padding: 12px 20px;
    border-radius: 25px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(255, 107, 53, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
}

.highlight-item i {
    color: var(--accent-color);
    font-size: 18px;
}

.highlight-item span {
    font-weight: 600;
    color: var(--text-dark);
}

.story-image {
    position: relative;
    z-index: 3;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.image-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.image-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-container:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.8), rgba(247, 147, 30, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-container:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
}

.overlay-content i {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.overlay-content span {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Our Mission Section */
.our-mission {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.mission-header {
    margin-bottom: 60px;
}

.mission-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.mission-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 107, 53, 0.3);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--accent-color), #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.mission-icon i {
    font-size: 2rem;
    color: white;
}

.mission-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.mission-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 25px;
}

.mission-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.feature-tag {
    background: rgba(255, 107, 53, 0.1);
    color: var(--accent-color);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

/* Our Values Section */
.our-values {
    padding: 100px 0;
    background: var(--white);
}

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

.values-header {
    margin-bottom: 60px;
}

.values-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.value-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 107, 53, 0.3);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--accent-color), #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.value-icon i {
    font-size: 1.8rem;
    color: white;
}

.value-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.value-description {
    color: var(--text-light);
    line-height: 1.6;
}

/* Our Team Section */
.our-team {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.team-header {
    margin-bottom: 60px;
}

.team-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.team-member {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 107, 53, 0.3);
}

.member-photo {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.9), rgba(247, 147, 30, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.member-photo:hover .member-overlay {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.member-info {
    text-align: center;
}

.member-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.member-role {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.member-bio {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* About CTA Section */
.about-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--accent-color) 0%, #f7931e 100%);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.cta-feature i {
    color: #4ade80;
    font-size: 1.2rem;
}

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

.cta-actions .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.cta-actions .btn-primary {
    background: white;
    color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-actions .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.cta-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* ===== RESPONSIVE DESIGN ===== */

/* ===== TABLETTE (768px et moins) ===== */
@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left var(--transition-normal);
        box-shadow: var(--shadow-medium);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    /* Hero Section */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-illustration {
        width: 300px;
        height: 300px;
    }
    
    /* Articles */
    .article-card.featured {
        grid-column: span 1;
    }
    
    .articles-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    /* Formulaires */
    .form-group {
        flex-direction: column;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-logo .logo-text {
        font-size: 1.5rem;
    }
    
    .footer-location {
        justify-content: center;
    }
    
    .footer-description {
        font-size: 0.9rem;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-title {
        font-size: 1.1rem;
        justify-content: center;
    }
    
    .footer-links a {
        justify-content: center;
    }
    
    .footer-contact {
        align-items: center;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .footer-newsletter {
        max-width: 100%;
    }
    
    .footer-newsletter-text {
        font-size: 0.9rem;
        text-align: center;
    }
    
    .newsletter-input-group {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .footer-newsletter-form input {
        padding: 10px 12px;
        font-size: 0.9rem;
        text-align: center;
    }
    
    .footer-newsletter-form button {
        padding: 10px 12px;
        align-self: center;
    }
    
    .newsletter-privacy {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-bottom-left {
        align-items: center;
    }
    
    .footer-bottom-right {
        align-items: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .footer-language {
        justify-content: center;
    }
    
    /* Typographie */
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    /* Pages spécifiques */
    .about-hero-content,
    .story-content,
    .vision-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .newsletter-content,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .article-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .article-sidebar {
        position: static;
        order: -1;
    }
    
    .mission-grid,
    .values-grid,
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ===== ÉCRANS MOYENS (481px à 768px) ===== */
@media (min-width: 481px) and (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .btn {
        width: auto;
        min-width: 200px;
    }
    
    .articles-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .mission-grid,
    .values-grid,
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .newsletter-content,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .article-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .article-sidebar {
        position: static;
        order: -1;
    }
    
    .filters-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .filter-btn {
        width: auto;
        min-width: 150px;
    }
    
    .pagination {
        flex-direction: row;
        justify-content: center;
    }
    
    .pagination-numbers {
        order: 0;
    }
}

/* ===== ÉCRANS LARGES MOBILES (481px à 600px) ===== */
@media (min-width: 481px) and (max-width: 600px) {
    .hero-illustration {
        width: 280px;
        height: 280px;
    }
    
    .floating-card {
        padding: 1rem;
    }
    
    .floating-card i {
        font-size: 1.4rem;
    }
    
    .floating-card span {
        font-size: 0.9rem;
    }
    
    .article-featured-image img {
        height: 300px;
    }
    
    .african-pattern {
        width: 280px;
        height: 280px;
    }
    
    .vision-illustration {
        width: 280px;
        height: 280px;
    }
}

/* ===== OPTIMISATIONS POUR TOUCH DEVICES ===== */
@media (hover: none) and (pointer: coarse) {
    .btn,
    .nav-link,
    .article-link,
    .share-btn,
    .social-link,
    .filter-btn,
    .pagination-btn,
    .pagination-number,
    .faq-question,
    .toc-link {
        min-height: 44px;
        min-width: 44px;
    }
    
    .article-card:hover,
    .mission-card:hover,
    .value-item:hover,
    .team-member:hover,
    .contact-method:hover,
    .benefit-item:hover {
        transform: none;
    }
    
    .article-card:active,
    .mission-card:active,
    .value-item:active,
    .team-member:active,
    .contact-method:active,
    .benefit-item:active {
        transform: scale(0.98);
    }
}

/* ===== LANDSCAPE MOBILE ===== */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 60px 0 30px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-illustration {
        width: 200px;
        height: 200px;
    }
    
    .nav-menu {
        height: calc(100vh - 60px);
        overflow-y: auto;
    }
    
    .article-hero,
    .about-hero,
    .contact-hero,
    .blog-hero {
        padding: 60px 0 30px;
    }
}

/* ===== ACCESSIBILITÉ MOBILE ===== */
@media (max-width: 768px) {
    /* Améliorer la lisibilité */
    body {
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
    }
    
    /* Optimiser les zones de clic */
    .nav-link,
    .btn,
    .article-link,
    .share-btn,
    .social-link,
    .filter-btn,
    .pagination-btn,
    .pagination-number,
    .faq-question,
    .toc-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Améliorer l'espacement pour les doigts */
    .nav-list {
        gap: 2rem;
    }
    
    .hero-buttons {
        gap: 1.5rem;
    }
    
    .share-buttons {
        gap: 1rem;
    }
    
    .social-links {
        gap: 1rem;
    }
    
    /* Optimiser les formulaires pour mobile */
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Évite le zoom automatique sur iOS */
    }
    
    /* Améliorer la navigation tactile */
    .nav-toggle {
        padding: 10px;
    }
    
    .bar {
        width: 30px;
        height: 4px;
    }
}

/* ===== MOBILE (480px et moins) ===== */
@media (max-width: 480px) {
    /* === CONTAINER ET ESPACEMENTS === */
    .container {
        padding: 0 15px;
    }
    
    /* === NAVIGATION === */
    .nav-container {
        padding: 0 15px;
        height: 60px;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .nav-menu {
        top: 60px;
        height: calc(100vh - 60px);
    }
    
    /* === HERO SECTIONS === */
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 12px 20px;
    }
    
    .hero-illustration {
        width: 250px;
        height: 250px;
    }
    
    .floating-card {
        padding: 0.75rem;
    }
    
    .floating-card i {
        font-size: 1.2rem;
    }
    
    .floating-card span {
        font-size: 0.8rem;
    }
    
    /* === TYPOGRAPHIE === */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.4rem; }
    h4 { font-size: 1.2rem; }
    h5 { font-size: 1.1rem; }
    h6 { font-size: 1rem; }
    
    /* === SECTIONS GÉNÉRALES === */
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* === ARTICLES === */
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .article-card {
        margin-bottom: 1rem;
    }
    
    .article-card.featured {
        grid-column: span 1;
    }
    
    .article-image {
        height: 180px;
    }
    
    .article-content {
        padding: 1rem;
    }
    
    .article-title {
        font-size: 1.1rem;
        line-height: 1.3;
    }
    
    .article-excerpt {
        font-size: 0.9rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
        font-size: 0.8rem;
    }
    
    .article-tags {
        justify-content: center;
        gap: 0.5rem;
    }
    
    .tag {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
    
    .article-overlay-link {
        font-size: 0.9rem;
    }
    
    .article-overlay-link i {
        font-size: 1.5rem;
    }
    
    /* === PAGE BLOG === */
    .blog-hero {
        padding: 80px 0 40px;
    }
    
    .blog-hero-title {
        font-size: 2.5rem;
    }
    
    .blog-hero-description {
        font-size: 1rem;
    }
    
    .filters-container {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem 0;
    }
    
    .filter-btn {
        justify-content: center;
        width: 100%;
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .search-container {
        margin-bottom: 1rem;
    }
    
    .search-box {
        max-width: 100%;
    }
    
    .search-box input {
        padding: 10px 40px 10px 40px;
        font-size: 0.9rem;
    }
    
    .sort-container {
        margin-top: 0.5rem;
    }
    
    .sort-box {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .sort-box label {
        font-size: 0.9rem;
    }
    
    .sort-box select {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
    
    .pagination {
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .pagination-numbers {
        order: -1;
    }
    
    .pagination-btn {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
    
    .pagination-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    /* === PAGE ARTICLE === */
    .article-hero {
        padding: 80px 0 40px;
    }
    
    .article-breadcrumb {
        font-size: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .article-category-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
    
    .article-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .article-subtitle {
        font-size: 1.1rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1rem 0;
    }
    
    .author-info {
        justify-content: center;
    }
    
    .article-stats {
        justify-content: center;
        gap: 1rem;
    }
    
    .article-share {
        flex-direction: column;
        gap: 1rem;
    }
    
    .share-buttons {
        justify-content: center;
    }
    
    .article-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .article-sidebar {
        position: static;
        order: -1;
    }
    
    .article-featured-image img {
        height: 250px;
    }
    
    .article-body {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .article-body h2 {
        font-size: 1.5rem;
        margin: 2rem 0 1rem 0;
    }
    
    .article-body h3 {
        font-size: 1.3rem;
        margin: 1.5rem 0 0.75rem 0;
    }
    
    .article-body p {
        margin-bottom: 1rem;
    }
    
    .article-intro {
        font-size: 1.1rem;
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .highlight-box {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .highlight-box i {
        font-size: 1.2rem;
    }
    
    .quote-box {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .quote-box i {
        font-size: 1.5rem;
    }
    
    .quote-box p {
        font-size: 1.1rem;
    }
    
    .article-tags-section {
        margin: 2rem 0;
        padding: 1.5rem 0;
    }
    
    .article-tags .tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .author-bio {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .author-bio-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .author-bio-avatar {
        width: 60px;
        height: 60px;
        align-self: center;
    }
    
    .author-social {
        justify-content: center;
    }
    
    .author-social-link {
        width: 30px;
        height: 30px;
    }
    
    /* === SIDEBAR === */
    .sidebar-widget {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .widget-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .toc-nav {
        max-height: 300px;
    }
    
    .toc-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .recent-post {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .recent-post img {
        width: 80px;
        height: 80px;
        align-self: center;
    }
    
    .recent-post-content h4 {
        font-size: 0.8rem;
    }
    
    .recent-post-date {
        font-size: 0.7rem;
    }
    
    .tip-content p {
        font-size: 0.9rem;
    }
    
    .sidebar-newsletter-form input {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .sidebar-newsletter-form .btn {
        font-size: 0.8rem;
        padding: 8px 12px;
    }
    
    /* === PAGE À PROPOS === */
    .about-hero {
        padding: 100px 0 50px;
    }
    
    .about-hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .about-hero-description {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .about-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-hero-visual {
        order: -1;
        margin-bottom: 2rem;
    }
    
    .african-pattern {
        width: 250px;
        height: 250px;
    }
    
    /* Sections Notre Histoire */
    .our-story {
        padding: 60px 0;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .story-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .story-image {
        order: -1;
        margin-bottom: 2rem;
    }
    
    /* Sections Notre Mission */
    .our-mission {
        padding: 60px 0;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-card {
        text-align: center;
    }
    
    /* Sections Nos Valeurs */
    .our-values {
        padding: 60px 0;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .value-item {
        text-align: center;
    }
    
    /* Section Notre Équipe */
    .our-team {
        padding: 60px 0;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-member {
        text-align: center;
    }
    
    /* Section CTA */
    .about-cta {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .pattern-circle {
        animation-duration: 4s;
    }
}

/* ===== TRÈS PETITS ÉCRANS (480px et moins) ===== */
@media (max-width: 480px) {
    /* === PAGE À PROPOS === */
    .about-hero {
        padding: 80px 0 40px;
    }
    
    .about-hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .about-hero-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .african-pattern {
        width: 200px;
        height: 200px;
    }
    
    /* Sections Notre Histoire */
    .our-story {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .story-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .story-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Sections Notre Mission */
    .our-mission {
        padding: 40px 0;
    }
    
    .mission-subtitle {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .mission-title {
        font-size: 1.2rem;
        line-height: 1.2;
    }
    
    .mission-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* Sections Nos Valeurs */
    .our-values {
        padding: 40px 0;
    }
    
    .value-title {
        font-size: 1.2rem;
        line-height: 1.2;
    }
    
    .value-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* Section Notre Équipe */
    .our-team {
        padding: 40px 0;
    }
    
    .member-name {
        font-size: 1.2rem;
        line-height: 1.2;
    }
    
    .member-role {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    .member-bio {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* Section CTA */
    .about-cta {
        padding: 40px 0;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .cta-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .about-hero-content,
    .story-content {
        gap: 1.5rem;
    }
    
    .circle-1 {
        width: 60px;
        height: 60px;
    }
    
    /* About Page Responsive - Nouvelle Structure */
    .about-hero {
        padding: 100px 0 50px;
    }
    
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero-description {
        font-size: 1rem;
    }
    
    .info-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .mission-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-points {
        gap: 1rem;
    }
    
    .mission-point {
        padding: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .story-timeline {
        padding-left: 1.5rem;
    }
    
    .timeline-item {
        padding-left: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .our-story {
        padding: 60px 0;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .story-description {
        padding-left: 0;
    }
    
    .story-description::before {
        display: none;
    }
    
    .story-highlights {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .highlight-item {
        justify-content: center;
        width: 100%;
        max-width: 300px;
    }
    
    .our-mission {
        padding: 60px 0;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .mission-card {
        padding: 30px 20px;
    }
    
    .mission-features {
        justify-content: center;
    }
    
    .our-values {
        padding: 60px 0;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-item {
        padding: 30px 20px;
    }
    
    .our-team {
        padding: 60px 0;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-member {
        padding: 25px 20px;
    }
    
    .member-photo {
        width: 120px;
        height: 120px;
    }
    
    .about-cta {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-actions .btn {
        width: 100%;
        justify-content: center;
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    /* Mobile spécifique - 480px et moins */
    @media (max-width: 480px) {
        .about-hero {
            padding: 80px 0 40px;
        }
        
        .about-hero-title {
            font-size: 2rem;
        }
        
        .about-hero-description {
            font-size: 0.9rem;
        }
        
        .info-grid {
            grid-template-columns: 1fr;
            gap: 1rem;
        }
        
        .info-card {
            padding: 1.5rem;
        }
        
        .info-icon {
            width: 50px;
            height: 50px;
        }
        
        .info-icon i {
            font-size: 1.2rem;
        }
        
        .mission-content {
            gap: 1.5rem;
        }
        
        .mission-point {
            flex-direction: column;
            text-align: center;
            gap: 1rem;
        }
        
        .mission-point i {
            width: 40px;
            height: 40px;
            font-size: 1rem;
        }
        
        .stats-grid {
            grid-template-columns: 1fr;
            gap: 1rem;
        }
        
        .story-timeline {
            padding-left: 1rem;
        }
        
        .story-timeline::before {
            left: 0.5rem;
        }
        
        .timeline-item {
            padding-left: 1rem;
            margin-bottom: 1.5rem;
        }
        
        .timeline-item::before {
            left: -0.5rem;
        }
        
        .our-story {
            padding: 40px 0;
        }
        
        .story-content {
            gap: 30px;
            padding: 0 15px;
        }
        
        .story-text .section-title {
            font-size: 1.8rem;
            margin-bottom: 20px;
        }
        
        .story-description {
            font-size: 1rem;
            margin-bottom: 20px;
        }
        
        .story-highlights {
            gap: 15px;
            margin-top: 30px;
        }
        
        .highlight-item {
            padding: 15px 20px;
            width: 100%;
            max-width: 280px;
        }
        
        .our-mission {
            padding: 40px 0;
        }
        
        .mission-grid {
            gap: 20px;
            padding: 0 15px;
        }
        
        .mission-card {
            padding: 25px 20px;
        }
        
        .mission-title {
            font-size: 1.3rem;
        }
        
        .our-values {
            padding: 40px 0;
        }
        
        .values-grid {
            gap: 20px;
            padding: 0 15px;
        }
        
        .value-item {
            padding: 25px 20px;
        }
        
        .our-team {
            padding: 40px 0;
        }
        
        .team-grid {
            gap: 20px;
            padding: 0 15px;
        }
        
        .team-member {
            padding: 20px 15px;
        }
        
        .member-photo {
            width: 100px;
            height: 100px;
        }
        
        .about-cta {
            padding: 40px 0;
        }
        
        .cta-content {
            padding: 0 15px;
        }
        
        .cta-content h2 {
            font-size: 1.5rem;
        }
        
        .cta-content p {
            font-size: 0.95rem;
        }
        
        .cta-features {
            gap: 15px;
            margin-bottom: 30px;
        }
        
        .cta-actions {
            gap: 15px;
        }
        
        .cta-actions .btn {
            padding: 15px 20px;
            font-size: 0.95rem;
        }
    }
}

/* ===== NOUVEAUX STYLES PAGE À PROPOS ===== */

/* Badge Hero */
.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid rgba(255, 107, 53, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.about-badge i {
    color: var(--accent-color);
}

/* Stats Hero */
.about-hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

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

.hero-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
}

/* Highlights Story */
.story-highlights {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--light-bg);
    padding: 0.75rem 1rem;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
}

.highlight-item i {
    color: var(--accent-color);
    font-size: 1rem;
}

/* Image Container */
.image-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 20px;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.image-container:hover img {
    transform: scale(1.05);
}

/* Mission Header */
.mission-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* Mission Features */
.mission-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1rem;
}

.feature-tag {
    background: var(--light-bg);
    color: var(--text-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
}

/* Values Header */
.values-header {
    text-align: center;
    margin-bottom: 4rem;
}

.values-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Team Header */
.team-header {
    text-align: center;
    margin-bottom: 4rem;
}

.team-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Team Member */
.team-member {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.member-photo {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--light-bg);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 46, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.member-photo:hover .member-overlay {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all var(--transition-normal);
}

.social-link:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.member-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.member-role {
    font-size: 1rem;
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-bio {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-light);
}

/* CTA Section */
.about-cta {
    padding: var(--section-padding);
    background: var(--gradient-hero);
    color: var(--white);
    text-align: center;
}

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

.cta-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-features {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-feature i {
    color: var(--accent-color);
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-actions .btn {
    width: 100%;
    justify-content: center;
}

/* Responsive pour les nouveaux styles */
@media (max-width: 768px) {
    .about-hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .story-highlights {
        flex-direction: column;
        gap: 1rem;
    }
    
    .mission-features {
        justify-content: center;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .cta-features {
        justify-content: center;
    }
    
    .cta-actions {
        flex-direction: column;
    }
}


/* ===== RESPONSIVE FOOTER ===== */
    
    .footer-bottom-left {
        align-items: center;
    }
    
    .footer-bottom-left p {
        font-size: 0.8rem;
    }
    
    .footer-africa {
        font-size: 0.7rem;
    }
    
    .footer-bottom-right {
        align-items: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .footer-bottom-links a {
        font-size: 0.8rem;
    }
    
    .footer-bottom-links a i {
        font-size: 0.7rem;
    }
    
    .footer-language {
        justify-content: center;
        font-size: 0.7rem;
    }
    
    .social-links {
        justify-content: center;
        gap: 0.75rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
    
    /* === NEWSLETTER SECTION === */
    .newsletter {
        padding: 3rem 0;
    }
    
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .newsletter-text {
        padding-right: 0;
        text-align: center;
    }
    
    .newsletter-badge {
        margin: 0 auto 1.5rem;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-description {
        font-size: 1rem;
    }
    
    .newsletter-benefits {
        align-items: center;
    }
    
    .newsletter-form-container {
        padding: 1.5rem;
    }
    
    .form-header h3 {
        font-size: 1.3rem;
    }
    
    .form-header p {
        font-size: 0.8rem;
    }
    
    .interests-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-submit {
        font-size: 1rem;
        padding: 12px 20px;
    }
    
    .newsletter-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-note {
        font-size: 0.8rem;
    }

/* ===== PAGE BLOG ===== */
.blog-hero {
    padding: 120px 0 60px;
    background: var(--gradient-hero);
    color: var(--white);
    text-align: center;
}

.blog-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.blog-hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.blog-hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.blog-filters {
    padding: 2rem 0;
    background: var(--white);
    border-bottom: 1px solid var(--medium-gray);
}

.filters-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 20px;
    background: transparent;
    border: 2px solid var(--medium-gray);
    border-radius: var(--border-radius);
    color: var(--text-dark);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.blog-articles {
    padding: 4rem 0;
    background: var(--light-gray);
}

.article-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(210, 105, 30, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.article-card:hover .article-overlay {
    opacity: 1;
}

.article-overlay-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transform: translateY(20px);
    transition: transform var(--transition-normal);
}

.article-card:hover .article-overlay-link {
    transform: translateY(0);
}

.article-overlay-link i {
    font-size: 2rem;
}

.article-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.tag {
    background: var(--light-gray);
    color: var(--text-light);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* ===== PAGINATION ===== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 10px 16px;
    background: var(--white);
    border: 2px solid var(--medium-gray);
    border-radius: var(--border-radius);
    color: var(--text-dark);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.pagination-btn:hover:not(.disabled) {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.pagination-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-numbers {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.pagination-number {
    width: 40px;
    height: 40px;
    background: var(--white);
    border: 2px solid var(--medium-gray);
    border-radius: 50%;
    color: var(--text-dark);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-number:hover,
.pagination-number.active {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: var(--primary-color);
}

.pagination-dots {
    color: var(--text-light);
    font-weight: 500;
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Animation pour les cartes filtrées */
.article-card.filtered {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.article-card.show {
    opacity: 1;
    transform: scale(1);
}

/* ===== PAGE ARTICLE ===== */
.article-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
}

.article-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.article-breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.article-breadcrumb a:hover {
    color: var(--secondary-color);
}

.article-breadcrumb i {
    font-size: 0.8rem;
}

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

.article-category-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.article-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--text-dark);
}

.article-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--medium-gray);
    border-bottom: 1px solid var(--medium-gray);
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.author-name {
    font-weight: 600;
    color: var(--text-dark);
}

.publish-date {
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-stats {
    display: flex;
    gap: 1.5rem;
}

.read-time,
.views-count {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.article-share {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.share-label {
    font-weight: 500;
    color: var(--text-dark);
}

.share-buttons {
    display: flex;
    gap: 0.5rem;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all var(--transition-normal);
}

.share-btn.twitter { background: #1DA1F2; }
.share-btn.linkedin { background: #0077B5; }
.share-btn.facebook { background: #4267B2; }
.share-btn.copy { background: var(--primary-color); }

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.article-content-section {
    padding: 4rem 0;
    background: var(--white);
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.article-main {
    max-width: 800px;
}

.article-featured-image {
    margin-bottom: 3rem;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.article-featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.article-featured-image:hover img {
    transform: scale(1.05);
}

.article-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.article-body h2 {
    font-size: 2rem;
    margin: 3rem 0 1.5rem 0;
    color: var(--text-dark);
    position: relative;
}

.article-body h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.article-body h3 {
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem 0;
    color: var(--text-dark);
}

.article-body p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.article-intro {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-dark);
    background: var(--light-gray);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    margin-bottom: 3rem;
}

.highlight-box {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    color: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.highlight-box i {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.quote-box {
    background: var(--off-white);
    border-left: 4px solid var(--primary-color);
    padding: 2rem;
    margin: 3rem 0;
    border-radius: var(--border-radius);
    position: relative;
}

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

.quote-box p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.quote-box cite {
    font-weight: 600;
    color: var(--primary-color);
}

.article-tags-section {
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid var(--medium-gray);
}

.article-tags-section h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.article-tags {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.article-tags .tag {
    background: var(--light-gray);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all var(--transition-normal);
}

.article-tags .tag:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-2px);
}

.author-bio {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    margin: 3rem 0;
}

.author-bio-content {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.author-bio-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.author-bio-text h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.author-bio-text p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.author-social {
    display: flex;
    gap: 0.75rem;
}

.author-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: all var(--transition-normal);
}

.author-social-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* ===== SIDEBAR ===== */
.article-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--medium-gray);
}

.widget-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.widget-title i {
    color: var(--primary-color);
}

.toc-nav {
    max-height: 400px;
    overflow-y: auto;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-list li {
    margin-bottom: 0.75rem;
}

.toc-link {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-light);
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: all var(--transition-normal);
    font-size: 0.9rem;
    line-height: 1.4;
}

.toc-link:hover,
.toc-link.active {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateX(5px);
}

.recent-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.recent-post {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.recent-post img {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius);
    object-fit: cover;
}

.recent-post-content h4 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.recent-post-content h4 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.recent-post-content h4 a:hover {
    color: var(--primary-color);
}

.recent-post-date {
    font-size: 0.8rem;
    color: var(--text-light);
}

.tip-widget {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    color: var(--white);
}

.tip-widget .widget-title {
    color: var(--white);
}

.tip-widget .widget-title i {
    color: var(--white);
}

.tip-content p {
    color: var(--white);
    margin: 0;
}

.newsletter-widget {
    background: var(--gradient-hero);
    color: var(--white);
}

.newsletter-widget .widget-title {
    color: var(--white);
}

.newsletter-widget .widget-title i {
    color: var(--white);
}

.newsletter-widget p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.sidebar-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-newsletter-form input {
    padding: 12px 16px;
    border: none;
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.sidebar-newsletter-form input:focus {
    outline: none;
    background: var(--white);
}

.sidebar-newsletter-form .btn {
    font-size: 0.9rem;
    padding: 10px 16px;
}

/* ===== ARTICLES SIMILAIRES ===== */
.related-articles {
    padding: 4rem 0;
    background: var(--light-gray);
}

.related-articles .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

/* ===== PAGE À PROPOS ===== */
.about-hero {
    padding: 120px 0 80px;
    background: var(--gradient-hero);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="african-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="%23ff6b35" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23african-pattern)"/></svg>');
    opacity: 0.4;
}

.about-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid rgba(255, 107, 53, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.about-badge i {
    color: var(--accent-color);
}

.about-hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    line-height: 1.2;
}

.about-hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.about-hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

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

.hero-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
}

.about-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.african-pattern {
    position: relative;
    width: 300px;
    height: 300px;
}

.pattern-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.circle-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 30%;
    animation-delay: 2s;
}

.circle-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 40%;
    animation-delay: 4s;
}

.pattern-line {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    animation: rotate 8s linear infinite;
}

.line-1 {
    width: 2px;
    height: 120px;
    top: 10%;
    left: 50%;
    transform-origin: bottom;
    animation-delay: 0s;
}

.line-2 {
    width: 2px;
    height: 80px;
    top: 30%;
    right: 20%;
    transform-origin: bottom;
    animation-delay: 2.5s;
}

.line-3 {
    width: 2px;
    height: 100px;
    bottom: 30%;
    left: 30%;
    transform-origin: bottom;
    animation-delay: 5s;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ===== NOTRE HISTOIRE ===== */
.our-story {
    padding: var(--section-padding);
    background: var(--white);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text {
    max-width: 600px;
}

.story-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.story-highlights {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--light-bg);
    padding: 0.75rem 1rem;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
}

.highlight-item i {
    color: var(--accent-color);
    font-size: 1rem;
}

.story-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.story-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.story-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(210, 105, 30, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.story-image:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: var(--white);
}

.overlay-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.overlay-content span {
    font-size: 1.2rem;
    font-weight: 500;
}

/* ===== NOTRE MISSION ===== */
.our-mission {
    padding: var(--section-padding);
    background: var(--light-gray);
}

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

.mission-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

.mission-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-normal);
    border: 1px solid var(--medium-gray);
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.mission-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.mission-description {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== NOS VALEURS ===== */
.our-values {
    padding: var(--section-padding);
    background: var(--white);
}

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

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

.value-item {
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.value-item:hover::before {
    opacity: 0.1;
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
    font-size: 1.8rem;
    transition: all var(--transition-normal);
}

.value-item:hover .value-icon {
    background: var(--gradient-primary);
    color: var(--white);
    transform: scale(1.1);
}

.value-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.value-description {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== NOTRE ÉQUIPE ===== */
.our-team {
    padding: var(--section-padding);
    background: var(--light-gray);
}

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

.team-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

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

.team-member {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-normal);
    border: 1px solid var(--medium-gray);
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.member-photo {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.team-member:hover .member-photo img {
    transform: scale(1.1);
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(210, 105, 30, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.team-member:hover .member-overlay {
    opacity: 1;
}

.member-social {
    display: flex;
    gap: 1rem;
}

.member-social .social-link {
    width: 40px;
    height: 40px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all var(--transition-normal);
}

.member-social .social-link:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: scale(1.1);
}

.member-name {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.member-role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-bio {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* ===== NOTRE VISION ===== */
.our-vision {
    padding: var(--section-padding);
    background: var(--white);
}

.vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.vision-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.vision-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    transition: all var(--transition-normal);
}

.highlight-item:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateX(10px);
}

.highlight-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: color var(--transition-normal);
}

.highlight-item:hover i {
    color: var(--white);
}

.vision-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.vision-illustration {
    position: relative;
    width: 300px;
    height: 300px;
}

.illustration-element {
    position: absolute;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-medium);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: float 6s ease-in-out infinite;
}

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

.illustration-element span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.element-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    top: 20%;
    right: 20%;
    animation-delay: 1.5s;
}

.element-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 3s;
}

.element-4 {
    bottom: 10%;
    right: 10%;
    animation-delay: 4.5s;
}

/* ===== CALL TO ACTION À PROPOS ===== */
.about-cta {
    padding: var(--section-padding);
    background: var(--gradient-hero);
    color: var(--white);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== PAGE CONTACT ===== */
.contact-hero {
    padding: 120px 0 80px;
    background: var(--gradient-hero);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contact-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="3" fill="%23FFD700" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-pattern)"/></svg>');
    opacity: 0.3;
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.contact-hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
    padding: var(--section-padding);
    background: var(--white);
}

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

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.newsletter-text {
    padding-right: 2rem;
}

.newsletter-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

.newsletter-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.newsletter-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    transition: all var(--transition-normal);
}

.benefit-item:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateX(10px);
}

.benefit-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: color var(--transition-normal);
}

.benefit-item:hover i {
    color: var(--white);
}

.newsletter-form-container {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-heavy);
    border: 1px solid var(--medium-gray);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-header p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.4;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px 12px 50px;
    border: 2px solid var(--medium-gray);
    border-radius: var(--border-radius);
    font-size: 1rem;
    background: var(--white);
    transition: all var(--transition-normal);
    font-family: var(--font-body);
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(210, 105, 30, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 1rem;
    transition: color var(--transition-normal);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.form-group:focus-within .form-icon {
    color: var(--primary-color);
}

.form-group textarea + .form-icon {
    top: 20px;
    transform: none;
    align-items: flex-start;
}

.checkbox-group {
    margin-bottom: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-light);
    position: relative;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--medium-gray);
    border-radius: 4px;
    position: relative;
    transition: all var(--transition-normal);
    flex-shrink: 0;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 6px;
    height: 10px;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    transform: translate(-50%, -60%) rotate(45deg);
}

.privacy-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.privacy-link:hover {
    color: var(--secondary-color);
}

.newsletter-submit,
.contact-submit {
    width: 100%;
    justify-content: center;
    font-size: 1.1rem;
    padding: 15px 24px;
    min-height: 48px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-note i {
    color: var(--primary-color);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    padding-right: 2rem;
}

.contact-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

.contact-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 3rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-light);
    transition: all var(--transition-normal);
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.method-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.method-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.method-content p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.method-content span {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 500;
}

.social-contact h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.social-contact .social-links {
    display: flex;
    gap: 1rem;
}

.social-contact .social-link {
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 2px solid var(--medium-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    text-decoration: none;
    transition: all var(--transition-normal);
}

.social-contact .social-link:hover {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.contact-form-container {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--medium-gray);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: var(--section-padding);
    background: var(--white);
}

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

.faq-grid {
    display: grid;
    gap: 1rem;
    margin-top: 3rem;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--medium-gray);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-item:hover {
    box-shadow: var(--shadow-light);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    background: var(--light-gray);
    transition: all var(--transition-normal);
}

.faq-question:hover {
    background: var(--gradient-primary);
    color: var(--white);
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    color: inherit;
}

.faq-question i {
    color: var(--primary-color);
    transition: all var(--transition-normal);
}

.faq-question:hover i {
    color: var(--white);
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Scroll reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

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

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
input:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Loading animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== RESPONSIVE SPÉCIFIQUE POUR PAGE ARTICLE ===== */
@media (max-width: 768px) {
    .article-hero {
        padding: 100px 0 50px;
    }
    
    .article-breadcrumb {
        font-size: 0.8rem;
        margin-bottom: 1.5rem;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .article-breadcrumb i {
        font-size: 0.7rem;
    }
    
    .article-category-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
        margin-bottom: 1rem;
    }
    
    .article-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .article-subtitle {
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: 2rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1rem 0;
        border-top: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);
        margin-bottom: 2rem;
    }
    
    .author-info {
        justify-content: center;
        gap: 1rem;
    }
    
    .author-avatar {
        width: 50px;
        height: 50px;
    }
    
    .author-details {
        text-align: center;
    }
    
    .author-name {
        font-size: 1rem;
        display: block;
        margin-bottom: 0.25rem;
    }
    
    .publish-date {
        font-size: 0.8rem;
    }
    
    .article-stats {
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .read-time,
    .views-count {
        font-size: 0.8rem;
    }
    
    .article-share {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .share-label {
        font-size: 0.9rem;
    }
    
    .share-buttons {
        justify-content: center;
        gap: 0.75rem;
    }
    
    .share-btn {
        width: 40px;
        height: 40px;
    }
    
    .article-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 100%;
    }
    
    .article-sidebar {
        position: static;
        order: -1;
        max-width: 100%;
    }
    
    .article-main {
        max-width: 100%;
    }
    
    .article-featured-image {
        margin-bottom: 2rem;
    }
    
    .article-featured-image img {
        height: 250px;
    }
    
    .article-body {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .article-body h2 {
        font-size: 1.5rem;
        margin: 2rem 0 1rem 0;
    }
    
    .article-body h3 {
        font-size: 1.3rem;
        margin: 1.5rem 0 0.75rem 0;
    }
    
    .article-body p {
        margin-bottom: 1rem;
    }
    
    .article-intro {
        font-size: 1.1rem;
        padding: 1.5rem;
        margin-bottom: 2rem;
        border-radius: 8px;
    }
    
    .highlight-box {
        padding: 1.5rem;
        margin: 1.5rem 0;
        border-radius: 8px;
    }
    
    .highlight-box i {
        font-size: 1.2rem;
    }
    
    .quote-box {
        padding: 1.5rem;
        margin: 2rem 0;
        border-radius: 8px;
    }
    
    .quote-box i {
        font-size: 1.5rem;
    }
    
    .quote-box p {
        font-size: 1.1rem;
    }
    
    .article-tags-section {
        margin: 2rem 0;
        padding: 1.5rem 0;
        border-top: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);
    }
    
    .article-tags-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .article-tags {
        justify-content: center;
        gap: 0.5rem;
    }
    
    .article-tags .tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .author-bio {
        padding: 1.5rem;
        margin: 2rem 0;
        border-radius: 8px;
    }
    
    .author-bio-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .author-bio-avatar {
        width: 60px;
        height: 60px;
        align-self: center;
    }
    
    .author-bio-text h4 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .author-bio-text p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .author-social {
        justify-content: center;
        gap: 0.75rem;
    }
    
    .author-social-link {
        width: 30px;
        height: 30px;
    }
    
    .sidebar-widget {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .widget-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .toc-nav {
        max-height: 300px;
    }
    
    .toc-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .recent-post {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        padding: 1rem;
        border-radius: 8px;
    }
    
    .recent-post img {
        width: 80px;
        height: 80px;
        align-self: center;
    }
    
    .recent-post-content h4 {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .recent-post-date {
        font-size: 0.7rem;
    }
    
    .tip-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .sidebar-newsletter-form {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .sidebar-newsletter-form input {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .sidebar-newsletter-form .btn {
        font-size: 0.8rem;
        padding: 8px 12px;
    }
}

@media (max-width: 480px) {
    .article-hero {
        padding: 80px 0 40px;
    }
    
    .article-title {
        font-size: 1.8rem;
    }
    
    .article-subtitle {
        font-size: 1rem;
    }
    
    .article-meta {
        padding: 0.75rem 0;
    }
    
    .author-avatar {
        width: 40px;
        height: 40px;
    }
    
    .author-name {
        font-size: 0.9rem;
    }
    
    .publish-date {
        font-size: 0.7rem;
    }
    
    .read-time,
    .views-count {
        font-size: 0.7rem;
    }
    
    .share-btn {
        width: 35px;
        height: 35px;
    }
    
    .article-featured-image img {
        height: 200px;
    }
    
    .article-body {
        font-size: 0.9rem;
    }
    
    .article-body h2 {
        font-size: 1.3rem;
        margin: 1.5rem 0 0.75rem 0;
    }
    
    .article-body h3 {
        font-size: 1.1rem;
        margin: 1.25rem 0 0.5rem 0;
    }
    
    .article-intro {
        font-size: 1rem;
        padding: 1rem;
    }
    
    .highlight-box {
        padding: 1rem;
    }
    
    .quote-box {
        padding: 1rem;
    }
    
    .article-tags-section {
        padding: 1rem 0;
    }
    
    .article-tags .tag {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
    
    .author-bio {
        padding: 1rem;
    }
    
    .author-bio-avatar {
        width: 50px;
        height: 50px;
    }
    
    .author-bio-text h4 {
        font-size: 1rem;
    }
    
    .author-bio-text p {
        font-size: 0.8rem;
    }
    
    .author-social-link {
        width: 25px;
        height: 25px;
    }
    
    .sidebar-widget {
        padding: 0.75rem;
    }
    
    .widget-title {
        font-size: 0.9rem;
    }
    
    .toc-link {
        padding: 0.4rem 0.6rem;
        font-size: 0.7rem;
    }
    
    .recent-post {
        padding: 0.75rem;
    }
    
    .recent-post img {
        width: 60px;
        height: 60px;
    }
    
    .recent-post-content h4 {
        font-size: 0.7rem;
    }
    
    .recent-post-date {
        font-size: 0.6rem;
    }
    
    .tip-content p {
        font-size: 0.8rem;
    }
    
    .sidebar-newsletter-form input {
        padding: 8px 10px;
        font-size: 0.8rem;
    }
    
    .sidebar-newsletter-form .btn {
        font-size: 0.7rem;
        padding: 6px 10px;
    }
}

/* ===== RESPONSIVE SPÉCIFIQUE POUR PAGE CONTACT ===== */
@media (max-width: 768px) {
    .contact-hero {
        padding: 100px 0 50px;
    }
    
    .contact-hero-title {
        font-size: 2.5rem;
    }
    
    .contact-hero-description {
        font-size: 1rem;
    }
    
    .newsletter-section,
    .contact-section,
    .faq-section {
        padding: 60px 0;
    }
    
    .newsletter-content,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .newsletter-text,
    .contact-info {
        padding-right: 0;
    }
    
    .newsletter-title,
    .contact-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .newsletter-title i,
    .contact-title i {
        font-size: 1.5rem;
    }
    
    .newsletter-description,
    .contact-description {
        font-size: 1rem;
        text-align: center;
    }
    
    .newsletter-benefits {
        gap: 0.75rem;
    }
    
    .benefit-item {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .benefit-item i {
        font-size: 1rem;
    }
    
    .newsletter-form-container,
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .form-header h3 {
        font-size: 1.3rem;
    }
    
    .form-header p {
        font-size: 0.8rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px 10px 45px;
        font-size: 0.9rem;
    }
    
    .form-icon {
        left: 12px;
        font-size: 0.9rem;
        width: 18px;
        height: 18px;
    }
    
    .checkbox-label {
        font-size: 0.8rem;
        gap: 0.5rem;
    }
    
    .checkmark {
        width: 18px;
        height: 18px;
        margin-top: 0;
    }
    
    .newsletter-submit,
    .contact-submit {
        font-size: 1rem;
        padding: 12px 20px;
    }
    
    .form-note {
        font-size: 0.7rem;
    }
    
    .contact-methods {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1rem;
    }
    
    .method-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        align-self: center;
    }
    
    .method-content h3 {
        font-size: 1rem;
    }
    
    .method-content p {
        font-size: 0.9rem;
    }
    
    .method-content span {
        font-size: 0.8rem;
    }
    
    .social-contact h3 {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .social-contact .social-links {
        justify-content: center;
    }
    
    .social-contact .social-link {
        width: 45px;
        height: 45px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1rem;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 80px 0 40px;
    }
    
    .contact-hero-title {
        font-size: 2rem;
    }
    
    .contact-hero-description {
        font-size: 0.9rem;
    }
    
    .newsletter-section,
    .contact-section,
    .faq-section {
        padding: 40px 0;
    }
    
    .newsletter-title,
    .contact-title {
        font-size: 1.8rem;
    }
    
    .newsletter-description,
    .contact-description {
        font-size: 0.9rem;
    }
    
    .newsletter-form-container,
    .contact-form-container {
        padding: 1rem;
    }
    
    .form-header h3 {
        font-size: 1.2rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 8px 10px 8px 40px;
        font-size: 0.9rem;
    }
    
    .form-icon {
        left: 10px;
        font-size: 0.8rem;
        width: 16px;
        height: 16px;
    }
    
    .newsletter-submit,
    .contact-submit {
        font-size: 0.9rem;
        padding: 10px 16px;
    }
    
    .contact-method {
        padding: 0.75rem;
    }
    
    .method-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .method-content h3 {
        font-size: 0.9rem;
    }
    
    .method-content p {
        font-size: 0.8rem;
    }
    
    .method-content span {
        font-size: 0.7rem;
    }
    
    .social-contact .social-link {
        width: 40px;
        height: 40px;
    }
    
    .faq-question {
        padding: 0.75rem;
    }
    
    .faq-question h3 {
        font-size: 0.9rem;
    }
    
    .faq-answer {
        padding: 0 0.75rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0.75rem;
    }
    
    .faq-answer p {
        font-size: 0.8rem;
    }
}

/* ===== SECTION FONCTIONNALITÉS LUMIA ===== */
.features-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-light);
    transition: var(--transition-normal);
    border: 1px solid var(--medium-gray);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.feature-card.featured {
    background: var(--gradient-primary);
    color: var(--white);
    transform: scale(1.05);
}

.feature-card.featured .feature-title,
.feature-card.featured .feature-description,
.feature-card.featured .feature-list {
    color: var(--white);
}

.feature-card.featured .feature-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--white);
    transition: var(--transition-normal);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.feature-list li i {
    color: var(--accent-green);
    margin-right: 0.75rem;
    font-size: 0.9rem;
    width: 16px;
}

.feature-card.featured .feature-list li i {
    color: var(--white);
}


/* Responsive pour les fonctionnalités */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-card.featured {
        transform: none;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* ===== SECTION TECHNOLOGIE ===== */
.technology-section {
    padding: var(--section-padding);
    background: var(--white);
}

.technology-content {
    margin-top: 3rem;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.tech-item {
    text-align: center;
    padding: 2rem;
    background: var(--off-white);
    border-radius: var(--border-radius-lg);
    transition: var(--transition-normal);
    border: 1px solid var(--medium-gray);
}

.tech-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    background: var(--white);
}

.tech-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
    transition: var(--transition-normal);
}

.tech-item:hover .tech-icon {
    transform: scale(1.1) rotate(5deg);
}

.tech-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.tech-item p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* ===== SECTION À PROPOS ===== */
.about-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.about-description {
    margin: 2rem 0;
}

.about-description p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition-normal);
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: var(--font-primary);
}

.stat-label {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-normal);
}

.about-image:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-heavy);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive pour les nouvelles sections */
@media (max-width: 768px) {
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tech-item {
        padding: 1.5rem;
    }
    
    .tech-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}
