/* ========================================
   OP! - STYLES RESPONSIVE
   Version corrigée avec menu hamburger fonctionnel
   ======================================== */

/* ========================================
   HEADER - STYLES DE BASE
   ======================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--jaune-dore, #F2D680);
    padding: 0.75rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
}

.logo-text {
    font-size: 1.3rem;
    color: var(--blanc, #fff);
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav a {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1rem;
    color: var(--vert-fonce, #2D403B);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--radius-md, 12px);
    transition: background 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.nav a:hover {
    background: rgba(255, 255, 255, 0.4);
}

.nav a.active {
    background: var(--vert-fonce, #2D403B);
    color: var(--blanc, #fff);
}

.nav-icon {
    font-size: 1.1rem;
}

/* Espace pour le contenu sous le header fixe */
body {
    padding-top: 90px;
}

/* User bar - styles de base */
.user-bar {
    position: relative;
    z-index: 90;
    margin-top: 2rem !important;
    padding-top: 1rem;
}

/* User bar - espacement desktop */
@media (min-width: 769px) {
    .user-bar {
        margin-top: 2rem !important;
        padding-top: 1rem;
    }
}

/* Page hero - titres en gras */
.page-hero h1 {
    font-weight: 700;
}

/* ========================================
   GRILLES DE CONTENU (Desktop)
   ======================================== */

/* Webinaires - grille 3 colonnes desktop */
.webinaires-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* Désactiver le featured sur webinaires */
.webinaires-grid > *,
.webinaires-grid > *:first-child {
    grid-column: span 1;
    grid-row: span 1;
}

/* Quiz - grille similaire */
.quiz-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* ========================================
   HEADER & MENU HAMBURGER (MOBILE)
   ======================================== */

/* Bouton hamburger - caché par défaut sur desktop */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    position: relative;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--vert-fonce, #2D403B);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Animation hamburger -> X */
.mobile-toggle.is-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.is-active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   TABLETTE - max 1024px
   ======================================== */

@media (max-width: 1024px) {
    :root {
        --space-3xl: 4rem;
        --space-4xl: 5rem;
    }
    
    /* Navigation tablette */
    .nav {
        gap: 0.15rem;
    }
    
    .nav a {
        padding: 0.5rem 0.7rem;
        font-size: 1rem;
    }
    
    .nav-icon {
        font-size: 1rem;
    }
    
    section {
        padding: var(--space-3xl) 0;
    }
    
    .benefits-grid,
    .offerings-grid,
    .testimonials-grid,
    .triptych-grid,
    .audience-triptych,
    .stats-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
        gap: 1.5rem;
    }
    
    .moments-cards {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        gap: 1.5rem;
    }
    
    .moments-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        text-align: center;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .social-links {
        align-items: center;
    }
    
    .webinaires-grid,
    .quiz-grid,
    .formations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    /* Pas de featured sur tablette non plus */
    .webinaires-grid > *,
    .webinaires-grid > *:first-child,
    .quiz-grid > *,
    .quiz-grid > *:first-child {
        grid-column: span 1;
    }
    
    .raisons-grid {
        gap: 1.5rem;
    }
    
    .raison {
        padding: 1.25rem;
    }
}

/* ========================================
   MOBILE - max 768px
   ======================================== */

@media (max-width: 768px) {
    :root {
        --space-2xl: 3rem;
        --space-3xl: 3.5rem;
        --space-4xl: 4rem;
    }
    
    section {
        padding: var(--space-2xl) 0;
        margin-bottom: 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    /* ===== HEADER & NAVIGATION ===== */
    body {
        padding-top: 65px;
    }
    
    .header {
        padding: 0.5rem 0;
    }
    
    .header .container {
        padding: 0 1rem;
    }
    
    .mobile-toggle {
        display: flex;
        width: 40px;
        height: 40px;
        padding: 10px;
    }
    
    .mobile-toggle span {
        width: 22px;
    }
    
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, #F0D075 0%, #e8c45a 100%);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 2rem;
        gap: 1.5rem;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.3s ease;
    }
    
    .nav.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .nav a {
        font-size: 1.5rem;
        padding: 1rem 1.5rem;
        color: var(--vert-fonce, #2D403B);
        text-decoration: none;
        font-weight: 700;
        border-radius: 8px;
        transition: background 0.2s ease;
    }
    
    .nav a:hover {
        background: rgba(255, 255, 255, 0.3);
    }
    
    .nav a .nav-icon {
        margin-right: 0.5rem;
    }
    
    .logo {
        flex-direction: row;
        align-items: center;
        gap: 0.6rem;
    }
    
    .logo-img {
        height: 46px;
    }
    
    .logo-text {
        font-size: 1rem;
        white-space: nowrap;
        text-transform: uppercase;
        letter-spacing: 0.02em;
        color: var(--blanc, #fff);
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        font-weight: 700;
    }
    
    /* ===== HERO ===== */
    .hero {
        min-height: 85vh;
        background-size: cover;
        background-position: 35% center;
        background-repeat: no-repeat;
        padding: 2rem 0;
    }
    
    .hero .container {
        text-align: center;
        padding: 1.5rem;
        padding-left: 1.5rem;
        justify-content: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-content-right {
        text-align: center;
        margin-left: 0;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        color: #fff;
        text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
    }
    
    .hero-content h1 span,
    .hero-highlight {
        color: #fff;
    }
    
    .hero-tagline {
        background: rgba(255, 255, 255, 0.7);
        padding: 0.75rem 1.25rem;
        border-radius: 20px;
        font-size: 0.95rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        color: #fff;
        text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
    }
    
    .hero-cta {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 280px;
    }
    
    /* ===== PAGE HERO ===== */
    .page-hero {
        padding: 1rem 1rem 1.5rem;
        margin-top: 0.5rem;
    }
    
    .page-hero h1 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
        font-weight: 700;
    }
    
    .page-hero p {
        margin-bottom: 1rem;
    }
    
    .page-stats {
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem;
        margin-top: 1.5rem;
    }
    
    .page-stat {
        padding: 0.5rem 0;
    }
    
    .page-stat-divider {
        width: 60%;
        height: 1px;
    }
    
    /* ===== GRILLES ===== */
    .moments-grid,
    .triptych-grid,
    .moments-cards,
    .audience-triptych,
    .stats-grid,
    .benefits-grid,
    .offerings-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .webinaires-grid,
    .quiz-grid,
    .formations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Images triptych centrées sur mobile */
    .triptych-image img {
        object-fit: cover;
        object-position: center top;
        width: 100%;
        height: 250px;
    }
    
    /* ===== CARTES ===== */
    .triptych-card,
    .benefit-card,
    .offering-card,
    .testimonial-card,
    .quiz-card,
    .webinaire-card,
    .formation-card {
        margin-bottom: 0.5rem;
    }
    
    .triptych-content {
        padding: 1.5rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
    
    .offering-card {
        padding: 1.5rem;
    }
    
    /* ===== SECTION POURQUOI OP ===== */
    .pourquoi-section {
        margin: 2rem 0;
    }
    
    .pourquoi-header {
        padding: 2rem 1.25rem;
    }
    
    .pourquoi-header h2 {
        font-size: 1.4rem;
        margin-bottom: 0.75rem;
    }
    
    .pourquoi-content {
        padding: 1.5rem 1.25rem 2rem;
    }
    
    .raisons-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .raison {
        padding: 1.25rem;
        margin-bottom: 0;
    }
    
    .raison-icon {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .raison-text h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .raison-text p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .trust-bar {
        flex-direction: column;
        gap: 1.25rem;
        align-items: center;
        padding: 1.5rem 1rem;
        margin-top: 1.5rem;
    }
    
    .trust-item {
        padding: 0.5rem 0;
    }
    
    .pourquoi-cta {
        padding: 2rem 1.25rem;
    }
    
    .pourquoi-cta .tagline {
        font-size: 1.15rem;
        margin-bottom: 1.25rem;
    }
    
    .pourquoi-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    /* ===== LISTES & ITEMS ===== */
    .audience-list {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .audience-item {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 1rem;
    }
    
    .summary-grid {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .summary-item {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 1rem;
    }
    
    /* ===== BOUTONS CTA ===== */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 1rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .page-cta-section {
        padding: 2rem 0;
    }
    
    .page-cta-card {
        padding: 1.75rem 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1.25rem;
    }
    
    .page-cta-content h2 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }
    
    .page-cta-content p {
        font-size: 0.95rem;
    }
    
    .page-cta-btn {
        width: 100%;
        padding: 1rem 1.5rem;
    }
    
    .page-cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }
    
    /* ===== FILTRES ===== */
    .page-filters-section {
        padding: 1.5rem 0;
    }
    
    .page-filters {
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .page-filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    /* ===== USER BAR ===== */
    .user-bar {
        padding: 0.5rem 1rem;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-top: 1.5rem !important;
        padding-top: 0.75rem;
    }
    
    .user-info {
        font-size: 0.8rem;
    }
    
    /* ===== AUTH MODAL ===== */
    .auth-modal {
        max-width: 95%;
        margin: 1rem;
    }
    
    .auth-header {
        padding: 1.5rem;
    }
    
    .auth-logo {
        font-size: 2rem;
    }
    
    .auth-benefits {
        padding: 1rem 1.25rem;
    }
    
    .auth-benefit {
        font-size: 0.9rem;
    }
    
    .auth-form {
        padding: 1.25rem;
    }
    
    /* ===== FOOTER ===== */
    .footer {
        padding: 3rem 0 1.5rem;
        margin-top: 2rem;
    }
    
    .footer-content {
        text-align: center;
        gap: 2rem;
    }
    
    .footer-col {
        margin-bottom: 1rem;
    }
    
    .footer-col h4 {
        margin-bottom: 1rem;
    }
    
    .footer-links {
        gap: 0.75rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding-top: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    /* ===== QUIZ CARDS ===== */
    .quiz-card-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .quiz-card-progress {
        align-self: center;
    }
    
    .quiz-card-btn {
        text-align: center;
        justify-content: center;
    }
    
    /* ===== GUIDES ===== */
    .slide-blocks {
        gap: 1.25rem;
    }
    
    .block-narrative,
    .block-info-box,
    .block-quiz,
    .block-poll,
    .block-stat,
    .block-focus {
        padding: 1rem;
    }
    
    .narrative-title,
    .info-box-title {
        font-size: 1rem;
    }
    
    .narrative-content,
    .info-box-content {
        font-size: 0.9rem;
    }
    
    .quiz-question,
    .poll-question {
        font-size: 1rem;
    }
    
    .quiz-option,
    .poll-option {
        padding: 0.875rem;
    }
    
    .hero-title {
        font-size: 1.35rem;
    }
    
    .sommaire-content {
        padding: 1rem;
    }
    
    .sequence-card {
        padding: 0.875rem;
    }
}

/* ========================================
   PETIT MOBILE - max 480px
   ======================================== */

@media (max-width: 480px) {
    .container {
        padding: 0 0.875rem;
    }
    
    /* Hero adaptatif petit écran */
    .hero {
        min-height: 80vh;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    /* Logo adaptatif */
    .logo-img {
        height: 42px;
    }
    
    .logo-text {
        font-size: 0.9rem;
    }
    
    section {
        padding: 2rem 0;
    }
    
    h1, .hero-content h1 {
        font-size: 1.5rem;
    }
    
    h2 {
        font-size: 1.3rem;
    }
    
    h3 {
        font-size: 1.1rem;
    }
    
    .nav a {
        font-size: 1.35rem;
    }
    
    .btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .pourquoi-header h2 {
        font-size: 1.25rem;
    }
    
    .pourquoi-content {
        padding: 1.25rem 1rem 1.75rem;
    }
    
    .raison {
        padding: 1rem;
    }
    
    .raison-icon {
        font-size: 1.75rem;
    }
    
    .raison-text h3 {
        font-size: 1rem;
    }
    
    .raison-text p {
        font-size: 0.9rem;
    }
    
    .trust-bar {
        padding: 1.25rem 1rem;
        gap: 1rem;
    }
    
    .pourquoi-cta {
        padding: 1.5rem 1rem;
    }
    
    .pourquoi-cta .tagline {
        font-size: 1.1rem;
    }
    
    .page-stats {
        padding: 1rem;
        gap: 0.875rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .page-stat-value {
        font-size: 1.2rem;
    }
    
    .quiz-card-image,
    .webinaire-image-container {
        height: 160px;
    }
    
    .quiz-card-body {
        padding: 1rem;
    }
    
    .quiz-card-title,
    .webinaire-title {
        font-size: 1.1rem;
    }
    
    .quiz-card-meta {
        font-size: 0.85rem;
    }
    
    .expert-card {
        padding: 1.25rem;
        gap: 1.25rem;
    }
    
    .expert-avatar {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .expert-info h2 {
        font-size: 1.2rem;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .step-number {
        margin: 0 auto 0.75rem;
    }
    
    .process-connector {
        margin: 0 auto;
    }
    
    .page-cta-card {
        padding: 1.5rem 1.25rem;
    }
    
    .page-cta-content h2 {
        font-size: 1.2rem;
    }
    
    .footer {
        padding: 2.5rem 0 1.25rem;
    }
    
    .footer-content {
        gap: 1.75rem;
    }
    
    .footer-logo-img {
        height: 40px;
        margin: 0 auto 0.75rem;
    }
    
    .footer-tagline {
        font-size: 1rem;
    }
    
    .footer-col {
        margin-bottom: 0.5rem;
    }
    
    .footer-col h4 {
        font-size: 0.9rem;
        margin-bottom: 0.875rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.875rem;
        font-size: 16px; /* Évite le zoom sur iOS */
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-submit-btn {
        padding: 0.875rem 1.5rem;
    }
    
    .contact-card {
        padding: 1.25rem;
    }
    
    .contact-card-icon {
        font-size: 2rem;
    }
    
    .pricing-card {
        padding: 1.25rem;
    }
    
    .pricing-price .price {
        font-size: 1.75rem;
    }
    
    /* Guides - résultats */
    .sequence-bilan-dominant {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .sequence-bilan-dominant .dominant-info {
        align-items: center;
    }
    
    .bilan-dominant-name,
    .result-profile-name {
        font-size: 1.4rem;
    }
    
    .tendency-content {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .tendency-text {
        text-align: center;
    }
    
    .result-profile-icons {
        gap: 0.5rem;
    }
    
    .hybrid-icon {
        font-size: 2.5rem;
    }
    
    .hybrid-breakdown {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hybrid-name {
        font-size: 1.25rem;
    }
    
    .conclusion-columns {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    /* Pages légales */
    .legal-hero {
        padding: 1.75rem 1rem;
    }
    
    .legal-hero-icon {
        font-size: 2.5rem;
    }
    
    .legal-hero-title {
        font-size: 1.4rem;
    }
    
    .legal-content {
        padding: 1.5rem 1rem;
    }
    
    .legal-article {
        padding: 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    .legal-rights-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .legal-contact-box {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.25rem;
    }
    
    .legal-hosting-box {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .legal-activity-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* ========================================
   TRÈS PETIT ÉCRAN - max 360px
   ======================================== */

@media (max-width: 360px) {
    .container {
        padding: 0 0.75rem;
    }
    
    section {
        padding: 1.75rem 0;
    }
    
    h1 {
        font-size: 1.35rem;
    }
    
    .hero-content h1 {
        font-size: 1.3rem;
    }
    
    h2 {
        font-size: 1.15rem;
    }
    
    h3 {
        font-size: 0.95rem;
    }
    
    .btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .nav a {
        font-size: 1.25rem;
    }
    
    .logo-img {
        height: 36px;
    }
    
    .logo-text {
        font-size: 0.8rem;
    }
    
    .triptych-content,
    .benefit-card,
    .offering-card,
    .quiz-card-body {
        padding: 1rem;
    }
    
    .raison {
        padding: 0.875rem;
    }
    
    .pourquoi-header,
    .pourquoi-content,
    .pourquoi-cta {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
}

/* ========================================
   HAUTEUR D'ÉCRAN RÉDUITE (paysage mobile)
   ======================================== */

@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    section {
        padding: 1.5rem 0;
    }
    
    .nav {
        padding: 1rem;
        gap: 0.5rem;
    }
    
    .nav a {
        font-size: 0.95rem;
        padding: 0.4rem 0.75rem;
    }
}

/* ========================================
   PRÉFÉRENCES UTILISATEUR
   ======================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* ========================================
   UTILITAIRES RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }
}

@media (min-width: 769px) {
    .hide-desktop {
        display: none !important;
    }
}

@media (min-width: 481px) and (max-width: 1024px) {
    .hide-tablet {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .text-center-mobile {
        text-align: center !important;
    }
    
    .full-width-mobile {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .section-spaced {
        margin-bottom: 2rem !important;
    }
}