/* ======================================================
   🎨 DESIGN SYSTEM – COULEURS DE BASE (AMP Formations)
   ====================================================== */

:root {
    --font-title: "Playfair Display", serif;
    --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    /* === colors === */
    --color-primary: #0b1c3d;
    --color-primary-dark: #08162f;
    --color-primary-light: #142b57;

    /* === cta, links === */
    --color-accent: #f28c5a;
    --color-accent-hover: #e77a45;

    --color-orange: #EDB9A4;

    /* === background === */
    --color-bg-light: #fffaf4;
    --color-bg-white: #ffffff;
    --color-bg-dark: var(--color-primary);
    --color-bg-orange: #FFF2E0;

    /* === text === */
    --color-text-dark: #0b1c3d;
    --color-text-light: #ffffff;
    --color-text-muted: #6c757d;

    /* === border, shadow === */
    --color-border-light: #e9e4dc;
    --shadow-soft: 0 20px 40px rgba(0, 0, 0, 0.08);

    /* === radius === */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 30px;

    --amp-green: #7a9c91;
    --amp-green-light: rgba(122, 156, 145, 0.12);
    --amp-green-border: rgba(122, 156, 145, 0.35);

    --amp-dark: #0f1b33;
    --amp-bg: #fff7ea;

    --amp-border: #0f1b33;
    --amp-text: #0f1b33;
}

body {
    font-family: var(--font-body), serif;
    font-weight: 400;
    color: var(--color-text-dark);
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title), serif;;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.navbar-ampf {
    background-color: var(--color-primary);
}

.navbar-ampf .nav-link {
    color: var(--color-text-light);
    font-weight: 500;
    transition: color 0.2s ease;
}

.navbar-ampf .nav-link:hover,
.navbar-ampf .nav-link.active {
    color: var(--color-accent);
}

.navbar-ampf .dropdown-menu {
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-soft);
}
.navbar-ampf .nav-link.dropdown-toggle.show {
    color: var(--color-accent);
}

.btn-outline-accent {
    background-color: transparent;
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
    padding: 10px 22px;
    border-radius: var(--radius-lg);
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-outline-accent:hover,
.btn-outline-accent:focus {
    background-color: var(--color-accent);
    color: var(--color-text-light);
    border-color: var(--color-accent);
    text-decoration: none;
}

.btn-cta {
    background-color: var(--color-accent);
    color: var(--color-text-light);
    padding: 10px 22px;
    border-radius: var(--radius-lg);
    font-weight: 600;
    border: none;
    transition: background-color 0.2s ease;
}

.btn-cta:hover {
    background-color: var(--color-accent-hover);
    color: var(--color-text-light);
}

.navbar-toggler {
    border: none;
}

.navbar-toggler-icon {
    filter: invert(1);
}

a.ampf-link {
    color: var(--color-text-light);
}
a.ampf-link:hover {
    color: var(--color-accent);
}

.footer-dark {
    background-color: var(--color-primary);
}
.footer-dark h5 {
    color: var(--color-text-light);
}

/* ======================================================
   🟦 HERO – HOME
   ====================================================== */

.hero-dark {
    background-color: var(--color-primary);
    color: var(--color-text-light);
}

.hero-dark .container {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.eyebrow {
    font-size: 0.9rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-orange);
}

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

.solutions-tab {
    display: inline-block;
    padding: 12px 35px;
    border-radius: 20px 20px 0 0;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    border: 1px solid transparent;
}

.solutions-tab.green {
    background: #8fa9a1;
    color: #0e1b3a;
}

.solutions-tab.blue {
    background: #e6f0f7;
    color: #0e1b3a;
}

.solutions-tab.beige {
    background: #fff3e0;
    color: #0e1b3a;
}

.solutions-tab.orange {
    background: #f2c2a5;
    color: #0e1b3a;
}

.solutions-tab:hover {
    opacity: 0.8;
}

/* ======================================================
   🟨 SECTIONS GÉNÉRIQUES
   ====================================================== */

.section-light {
    background-color: var(--color-bg-light);
}

.section-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    line-height: 1.2;
}

.section-title em {
    font-style: italic;
}

.section-intro {
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-text-dark);
}


/* ======================================================
   🔢 STEPS – INTERVENTION 48H
   ====================================================== */

.step {
    position: relative;
    padding-left: 3.2rem;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0.15rem;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #7f9b91;
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step h5 {
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.step p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #3f4a5a;
}


/* ======================================================
   ✅ POURQUOI – CARTES BÉNÉFICES
   ====================================================== */

.section-why {
    background-color: var(--color-bg-light);
}

.card-benefit {
    background-color: var(--color-bg-white);
    border-radius: var(--radius-md);
    padding: 3rem 2rem;
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.card-benefit p {
    font-size: 1rem;
    line-height: 1.6;
}

.check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 1.2rem;
    border-radius: 50%;
    background-color: #7f9b91;
    color: #fff;
    font-size: 1.4rem;
}

.section-why {
    background-color: var(--color-bg-orange);
}

/* ======================================================
   🤝 TESTIMONIAL SLIDER – FIX DISPLAY
   ====================================================== */

.testimonial-card {
    position: relative;
    background-color: #fff;
    border-radius: var(--radius-lg);
    padding: 3.5rem;
    box-shadow: var(--shadow-soft);
    min-height: 280px; /* 👈 hauteur stable */
    overflow: hidden;
}

/* Tous les testimonials sortent du flux */
.testimonial-item {
    position: absolute;
    top: 3.5rem;
    left: 3.5rem;
    right: 3.5rem;

    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
}

/* Seul l’actif est visible */
.testimonial-item.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Texte */
.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
    color: var(--color-text-dark);
}

/* Avatar */
.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Nav */
.testimonial-nav {
    position: absolute;
    bottom: 2rem;
    right: 2.5rem;
    display: flex;
    gap: 1.5rem;
}

.testimonial-nav button {
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--color-accent);
    cursor: pointer;
    transition: transform 0.2s ease;
}

.testimonial-nav button:hover {
    transform: translateX(3px);
}

.testimonial-text {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.testimonial-name {
    display: inline-block;
    max-width: 300px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.testimonial-role {
    display: inline-block;
    max-width: 280px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.trust-logos img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 992px) {
    .trust-logos img {
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    .trust-logos img {
        max-width: 70%;
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .testimonial-item {
        top: 2rem;
        left: 2rem;
        right: 2rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.55;
    }

    .testimonial-nav {
        bottom: 1.2rem;
        right: 1.5rem;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        padding: 1.8rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }
}

/* ======================================================
   ✨ TESTIMONIAL ANIMATION
   ====================================================== */

.testimonial-item {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.testimonial-item.active {
    opacity: 1;
    transform: translateY(0);
}

/* ======================================================
   ✨ PARTIAL FOOTER PAGE
   ====================================================== */
.section-hero-image {
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(35, 45, 65, 0.85);
z-index: 2;
}

.section-hero-image .container {
    z-index: 3;
}

.hero-title {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 500;
    line-height: 1.2;
}

.hero-separator {
    width: 50%;
    height: 2px;
    background-color: #f28c5b;
}

.hero-text {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.95;
}

/* ======================================================
    CONTACT PAGE
   ====================================================== */
.form-control.is-invalid,
.form-select.is-invalid {
    border-color: #dc3545 !important;
    background-image: none;
}

.form-control.is-invalid:focus,
.form-select.is-invalid:focus {
    box-shadow: none;
}
.was-validated .form-control:valid,
.was-validated .form-select:valid {
    border-color: #7bc47f;
}
.was-validated .no-valid-icon:valid {
    background-image: none;
    border-color: #ced4da;
}
.no-valid-icon.is-invalid {
    border-color: #dc3545 !important;
}
.was-validated .no-valid-icon:valid:focus {
    box-shadow: none;
}
.form-control:focus,
.form-select:focus {
    box-shadow: none;
}


.section-contact {
    background: #faf9f6;
}

.contact-card {
    max-width: 1100px;
    background: #fff;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0,0,0,.08);
}

.contact-title {
    font-family: serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: #1f2d4a;
}

.form-label {
    font-size: .9rem;
    color: #4a5568;
}

.form-control,
.form-select {
    border-radius: 10px;
    padding: .75rem 1rem;
    border: 1px solid #b8c0cc;
}

.form-control:focus,
.form-select:focus {
    border-color: #f28c5b;
    box-shadow: none;
}

.btn-contact {
    background: #f28c5b;
    border: none;
    border-radius: 999px;
    padding: .75rem 4rem;
    font-size: 1rem;
}

.btn-contact:hover {
    background: #e57f4f;
}

/* ======================================================
   FAQ
   ====================================================== */
.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1rem;
}

.faq-title {
    font-size: 2.8rem;
    font-weight: 600;
    margin: 0;
}

.faq-search {
    width: 260px;
    padding: .6rem .8rem;
    border: 1px solid #b8c0cc;
    border-radius: 10px;
    font-size: 1rem;
}

.faq-search:focus {
    outline: none;
    border-color: #7a8f87;
}

@media (max-width: 768px) {
    .faq-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .faq-title {
        font-size: 2rem;
    }
    
    .faq-search {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {    
    .faq-title {
        font-size: 1.5rem;
    }

    .faq-search {
        padding: .75rem 1rem;
    }
}

.faq-tabs-wrapper {
    border-bottom: 1px solid #1f2d4a;
    margin-bottom: 2rem;
}

.faq-tabs {
    display: flex;
    gap: 4rem;
}

.faq-tab {
    background: none;
    border: none;
    padding: 1rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #7a8f87;
    cursor: pointer;
    position: relative;
}

.faq-tab.active {
    color: #0f172a;
}

.faq-tab.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 3px;
    background-color: #7a8f87;
}

.faq-tabs-wrapper.hidden {
    display: none;
}

.faq-tab-content {
    display: none;
}

.faq-tab-content.active {
    display: block;
}

@media (max-width: 768px) {
    .faq-tabs {
        gap: 1rem;
    }

    .faq-tab {
        font-size: 0.9rem;
    }
}


@media (max-width: 480px) {
    .faq-tab {
        font-size: 0.8rem;
    }
}

.faq-item {
    border: 1px solid #1f2d4a;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
}

.faq-icon {
    transition: transform .2s;
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 1.5rem 1.5rem;
}

.faq-item.open .faq-answer {
    display: block;
}

.faq-result {
    margin-bottom: 1.5rem;
}

/* ======================================================
   ABOUT
   ====================================================== */
.hero-about {
    background: #fff6e8;
}

.hero-divider {
    width: 120px;
    height: 2px;
    background: #f07c4a;
}

.quote-section {
    background: linear-gradient(135deg, #0f1d3a, #162b57);
}

.check-icon {
    width: 40px;
    height: 40px;
    background: var(--amp-green);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: auto;
}

.btn-success {
    background-color: #7C9A92;
    border-radius: var(--radius-lg);
}
.btn-success:hover {
    background-color: #698c83;
    border-radius: var(--radius-lg);
}

/* ACCORDION RESET */
.accordion-approche .accordion-item {
    background: transparent;
    border: none;
    margin-bottom: 1.5rem;
}

/* BOUTON (LE SEUL ÉLÉMENT AVEC BORDURE) */
.accordion-approche .accordion-button {
    background: transparent;
    border: 1px solid #0f1b33;
    border-radius: 18px !important;
    padding: 1.25rem 1.75rem;
    font-size: 1.4rem;
    font-weight: 600;
    color: #0f1b33;
    box-shadow: none;
}

@media (min-width: 992px) {
    .accordion-approche .accordion-button {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .accordion-approche .accordion-button {
        padding: 1rem 1.25rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .accordion-approche .accordion-button {
        padding: 0.9rem 1rem;
        font-size: 0.95rem;
    }
}

/* ÉTAT OUVERT = IDENTIQUE */
.accordion-approche .accordion-button:not(.collapsed) {
    background: transparent;
    color: #0f1b33;
    box-shadow: none;
}

/* SUPPRIME LE FOND BOOTSTRAP */
.accordion-approche .accordion-button::after {
    background-size: 1.25rem;
}

.accordion-approche .accordion-button:hover .button-title {
    text-decoration: underline;
}

/* CONTENU */
.accordion-approche .accordion-body {
    padding: 1.5rem 2rem 0 2rem;
    color: #0f1b33;
    background: transparent;
}

/* OBJECTIF */
.accordion-approche em {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* LISTE */
.accordion-approche ul {
    padding-left: 1.2rem;
}

.accordion-approche li {
    margin-bottom: .6rem;
    font-size: 1.05rem;
}

/* FOUNDER CARDS */
.founder-card {
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    max-width: 400px;
    height: 100%;
}

.founder-card img {
    width: 100%;
    height: auto;
    display: block;
}

.founder-body {
    padding: 1.7rem 2.5rem;
    text-align: center;
}

.founder-body h5 {
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.founder-body .role {
    color: #6c757d;
    margin-bottom: 1rem;
}

.founder-body .description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #1f2a44;
}

/* PARTNERS */
.section-light {
    background: #fbf7f2;
}

.section-title {
    font-family: "Playfair Display", serif;
    font-size: 2.4rem;
    color: #0c1b3a;
}

.section-line {
    display: block;
    width: 120px;
    height: 2px;
    background: #7f9c93;
    margin: 0 auto 12px;
}

/* Partner card */
.partner-card {
    border-radius: 22px;
    padding: 30px 20px 35px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow:  0 8px 20px rgba(0, 0, 0, 0.1),
    0 2px 6px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.partner-card:hover {
    transform: translateY(-4px);
}

.partner-card img {
    max-width: 230px;
    max-height: 230px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
}

.partner-card h5 {
    font-weight: 600;
    font-size: 1.15rem;
    color: #0c1b3a;
    margin-bottom: 5px;
}

.partner-card p {
    margin: 0;
    color: #0c1b3a;
    font-size: 0.95rem;
    line-height: 1.4;
}

.section-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #1f2a44;
    margin-bottom: 2.5rem;
}

.section-text strong {
    font-weight: 700;
}

/* ======================================================
   HOMEPAGE
   ====================================================== */
@media (min-width: 992px) {
    .hero-image {
        max-width: 85%;
        margin-left: auto;
        display: block;
    }

    .partners-card {
        position: absolute;
        bottom: -60px;
        max-width: 520px;
    }
}

/* Mobile : pas d'overlap */
@media (max-width: 991.98px) {
    .partners-card {
        position: static;
        margin-top: 1.5rem;
    }
}

.text-green {
    color: var(--amp-green);
}

.home-card {
    border-radius: 22px;
    padding: 30px 20px 35px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow:  0 8px 20px rgba(0, 0, 0, 0.1), 0 2px 6px rgba(0, 0, 0, 0.1) !important;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    background: #fdf6ec;
}

.home-card:hover {
    transform: translateY(-4px);
}

.text-accent {
    color: var(--color-accent);
}

/* ======================================================
   Alert component
   ====================================================== */
.alert-container {
    position: fixed;
    top: 120px;
    right: 30px;
    z-index: 99999;
}

.custom-alert {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 320px;
    max-width: 400px;
    padding: 16px 20px;
    border-radius: 12px;
    color: var(--color-text-dark);
    background: var(--color-bg-light);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    position: relative;
    animation: slideFadeIn 0.6s ease forwards;
    pointer-events: auto;
    transition: opacity 0.5s ease;
}

.custom-alert-content {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.custom-alert-success {
    border-left: 5px solid #81C784;
}

.custom-alert-error {
    border-left: 5px solid #E57373;
}

.custom-alert-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.custom-alert-success .custom-alert-icon i {
    color: #81C784;
}

.custom-alert-error .custom-alert-icon i {
    color: #E57373;
}

.custom-alert-message {
    line-height: 1.4;
}

.custom-alert-close {
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    outline: none;
    padding: 0;
    margin-left: 10px;
    flex-shrink: 0;
}

.custom-alert-close i {
    color: var(--color-text-dark);
    font-size: 16px;
}

@keyframes slideFadeIn {
    0% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* FOOTER – Social Icons */
.footer-social .social-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--color-text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.25s ease;
}

.footer-social .social-circle:hover {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-text-light);
    transform: translateY(-3px);
}

/* DROPDOWN */
.navbar-ampf .dropdown-menu {
    background: #ffffff;
    border: none;
    padding: 0.6rem 1rem;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.10);
    animation: dropdownFade 0.20s ease forwards;
}

.navbar-ampf .dropdown-item {
    padding: 10px 20px;
    font-weight: 500;
    color: var(--color-primary);
    transition: color .20s ease, transform .20s ease;
}

.navbar-ampf .dropdown-item:hover {
    color: var(--color-accent);
    background-color: transparent !important;
    transform: translateX(6px);
}

.navbar-ampf .dropdown-item.active,
.navbar-ampf .dropdown-item:active {
    color: var(--color-accent) !important;
    background-color: transparent !important;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =============================== */
/* MOBILE MENU
/* =============================== */

@media (max-width: 991px) {

    .mobile-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background-color: var(--color-primary);
        padding: 3rem 2.2rem;
        z-index: 9999;

        transform: translateX(100%);
        transition: transform 0.35s ease-in-out;

        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
    }

    .mobile-menu.show {
        transform: translateX(0);
    }

    .close-menu-btn {
        position: absolute;
        top: 30px;
        right: 30px;
        width: 35px;
        height: 35px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.15);
        display: flex;
        justify-content: center;
        align-items: center;
        color: white;
        font-size: 1rem;
        cursor: pointer;
        transition: background 0.2s ease, border 0.2s ease;
    }

    .close-menu-btn:hover {
        background: rgba(255, 255, 255, 0.18);
        border-color: rgba(255, 255, 255, 0.3);
    }

    .mobile-menu .nav-link {
        font-size: 1.1rem;
        padding: 1rem 0;
    }
}