/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary-color: #1e40af;
    --green-color: #10b981;
    --purple-color: #8b5cf6;
    --text-dark: #111827;
    --text-gray: #6b7280;
    --text-light: #9ca3af;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

html {
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==================== HEADER & NAVIGATION ==================== */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo i {
    font-size: 32px;
    color: var(--primary-color);
}

.logo h1 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-gray);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-dark);
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.btn-white {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-white:hover {
    background-color: var(--bg-light);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-block {
    width: 100%;
}

/* ==================== HERO SECTION ==================== */
.hero {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: var(--white);
    padding: 80px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-text h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 20px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.hero-image img {
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* ==================== SECTION HEADERS ==================== */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 20px;
    color: var(--text-gray);
}

/* ==================== SERVICES SECTION ==================== */
.services {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background-color: var(--white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon.blue {
    background-color: #dbeafe;
    color: var(--primary-color);
}

.service-icon.green {
    background-color: #d1fae5;
    color: var(--green-color);
}

.service-icon.purple {
    background-color: #ede9fe;
    color: var(--purple-color);
}

.service-icon i {
    font-size: 32px;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.service-card>p {
    color: var(--text-gray);
    margin-bottom: 24px;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
}

.service-list i {
    color: var(--green-color);
    font-size: 20px;
}

/* ==================== ABOUT SECTION ==================== */
.about {
    padding: 80px 0;
    background-color: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.about-image img {
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.about-intro {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 24px;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    gap: 16px;
}

.feature-icon {
    background-color: #dbeafe;
    padding: 8px;
    border-radius: 8px;
    flex-shrink: 0;
}

.feature-icon i {
    color: var(--primary-color);
    font-size: 24px;
}

.feature-content h4 {
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.feature-content p {
    color: var(--text-gray);
}

/* ==================== TESTIMONIALS SECTION ==================== */
.testimonials {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.stars i {
    color: #fbbf24;
    font-size: 20px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: 24px;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 700;
    color: var(--text-dark);
}

.testimonial-role {
    font-size: 14px;
    color: var(--text-gray);
}

/* ==================== CONTACT SECTION ==================== */
.contact {
    padding: 80px 0;
    background-color: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
}

.contact-icon {
    background-color: #dbeafe;
    padding: 12px;
    border-radius: 8px;
    flex-shrink: 0;
    height: fit-content;
}

.contact-icon i {
    color: var(--primary-color);
    font-size: 24px;
}

.contact-details h4 {
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.contact-details p {
    color: var(--text-gray);
}

.contact-sub {
    font-size: 14px;
    color: var(--text-light);
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: var(--text-gray);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-family: inherit;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
}

/* ==================== FOOTER ==================== */
.footer {
    background-color: #111827;
    color: var(--white);
    padding: 48px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 32px;
}

.footer-section h4 {
    margin-bottom: 16px;
    font-weight: 700;
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-section li {
    color: var(--text-light);
    font-size: 14px;
}

.footer-section a {
    color: var(--text-light);
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.footer-logo i {
    color: #60a5fa;
    font-size: 24px;
}

.footer-section p {
    color: var(--text-light);
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 32px;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 14px;
}

/* ==================== RESPONSIVE DESIGN ==================== */
/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 768px) {

    /* Menu Mobile */
    .nav-links {
        display: none;
        /* Caché par défaut */
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    /* LA CLASSE MANQUANTE : Affichage quand activé par le JS */
    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        margin: 10px 0;
    }

    .mobile-menu-btn {
        display: block;
        /* Affiche le bouton hamburger */
    }

    /* Ajustements Hero Section */
    .hero-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .hero-image {
        display: none;
    }

    .hero-text h2 {
        font-size: 32px;
    }

    .hero-text p {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    /* Grilles sur une seule colonne */
    .services-grid,
    .about-content,
    .testimonials-grid,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
        /* L'image passe au-dessus du texte sur mobile */
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}

@media (max-width: 480px) {

    /* On réduit la taille du texte du logo */
    .logo h1 {
        font-size: 1.1rem;
        white-space: nowrap;
    }

    /* On réduit un peu le bouton Devis pour qu'il tienne sur la ligne */
    .nav-wrapper .btn-primary {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .nav-wrapper {
        gap: 5px;
        /* Réduit l'espace entre le logo et les boutons */
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0 40px 0;
        /* Réduit les marges en haut et en bas */
    }

    .hero-text h2 {
        font-size: 24px;
        /* Taille plus équilibrée pour iPhone XR */
        line-height: 1.3;
    }

    .hero-text p {
        font-size: 15px;
        margin-bottom: 20px;
    }

    /* Empiler les boutons pour qu'ils soient plus faciles à cliquer */
    .hero-buttons {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
        /* Plus de marge sur les côtés pour le contenu */
    }

    .service-card {
        padding: 25px 20px;
    }
}

/* ==================== PAGES STYLES ==================== */

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
}

/* ==================== VALEURS PAGE ==================== */
.valeurs-section {
    padding: 80px 0;
    background-color: var(--white);
}

.intro-text {
    max-width: 800px;
    margin: 0 auto 64px;
    text-align: center;
}

.intro-text p {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.8;
}

.valeurs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.valeur-card {
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.valeur-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.valeur-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.valeur-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.valeur-card:hover .valeur-image img {
    transform: scale(1.05);
}

.valeur-content {
    padding: 32px;
}

.valeur-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.valeur-icon i {
    font-size: 28px;
    color: var(--white);
}

.valeur-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.valeur-content p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
}

/* ==================== CARRIÈRES PAGE ==================== */
.why-join-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.benefit-card {
    background-color: var(--white);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.benefit-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.benefit-card p {
    font-size: 14px;
    color: var(--text-gray);
}

/* Jobs Section */
.jobs-section {
    padding: 80px 0;
    background-color: var(--white);
}

.jobs-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.job-card {
    background-color: var(--white);
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.job-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.job-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.job-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.job-meta span {
    font-size: 14px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 6px;
}

.job-meta i {
    color: var(--primary-color);
}

.job-image {
    width: 150px;
    height: 150px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.job-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.job-description h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.job-description p {
    color: var(--text-gray);
    margin-bottom: 16px;
    line-height: 1.6;
}

.job-description ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 24px;
}

.job-description li {
    color: var(--text-gray);
    margin-bottom: 8px;
}

/* Spontaneous Section */
.spontaneous-section {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    padding: 80px 0;
}

.spontaneous-content {
    text-align: center;
    color: var(--white);
}

.spontaneous-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.spontaneous-text p {
    font-size: 18px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
}

/* ==================== BLOG PAGE ==================== */
.blog-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.blog-card {
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.blog-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-content {
    padding: 24px;
}

.blog-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
}

.blog-meta span {
    font-size: 13px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
    line-height: 1.4;
}

.blog-content p {
    color: var(--text-gray);
    margin-bottom: 16px;
    line-height: 1.6;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 12px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.pagination-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #e5e7eb;
    background-color: var(--white);
    color: var(--text-gray);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.pagination-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    padding: 60px 0;
}

.newsletter-content {
    text-align: center;
    color: var(--white);
}

.newsletter-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.newsletter-content p {
    font-size: 18px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 12px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

/* ==================== RESPONSIVE - PAGES ==================== */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 32px;
    }

    .valeurs-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .job-header {
        flex-direction: column;
    }

    .job-image {
        width: 100%;
        height: 200px;
        margin-top: 16px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

/* ==================== ARTICLE PAGE STYLES ==================== */

/* Article Header */
.article-header {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: var(--white);
    padding: 60px 0 40px;
}

.breadcrumb {
    margin-bottom: 20px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--white);
}

.article-category {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.article-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.article-meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

/* Featured Image */
.article-featured-image {
    padding: 0;
    margin-bottom: 60px;
}

.article-featured-image img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

/* Article Content */
.article-content {
    padding: 0 0 80px;
}

.article-content .container {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    max-width: 1200px;
}

.article-body {
    max-width: 800px;
}

.lead {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 32px;
    font-weight: 400;
}

.article-body h2 {
    font-size: 32px;
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.article-body h3 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.article-body p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.article-body ul,
.article-body ol {
    margin-bottom: 24px;
    margin-left: 24px;
}

.article-body ul {
    list-style: disc;
}

.article-body ol {
    list-style: decimal;
}

.article-body li {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 12px;
}

.article-body strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Article CTA */
.article-cta {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: var(--white);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin-top: 60px;
}

.article-cta h3 {
    font-size: 28px;
    margin-bottom: 12px;
    color: var(--white);
}

.article-cta p {
    font-size: 18px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.9);
}

/* Sidebar */
.article-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.sidebar-widget h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.related-articles {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.related-articles li a {
    display: flex;
    gap: 12px;
    align-items: center;
    transition: opacity 0.3s ease;
}

.related-articles li a:hover {
    opacity: 0.7;
}

.related-articles img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.related-articles span {
    font-size: 14px;
    line-height: 1.4;
    color: var(--text-dark);
    font-weight: 500;
}

/* Share Buttons */
.share-buttons {
    display: flex;
    gap: 12px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: transform 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-3px);
}

.share-btn.facebook {
    background-color: #1877f2;
}

.share-btn.twitter {
    background-color: #1da1f2;
}

.share-btn.linkedin {
    background-color: #0a66c2;
}

.share-btn.email {
    background-color: #ea4335;
}

/* Responsive Article */
@media (max-width: 768px) {
    .article-header h1 {
        font-size: 28px;
    }

    .article-content .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .article-sidebar {
        position: static;
    }

    .article-body h2 {
        font-size: 24px;
    }

    .article-body h3 {
        font-size: 20px;
    }
}