/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #17233c;
    background-color: #ffffff;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}


/* =========================
   GENERAL
========================= */

.container {
    width: min(1180px, 90%);
    margin: 0 auto;
}


/* =========================
   HEADER
========================= */

.header {
    width: 100%;
    background-color: #ffffff;
    border-bottom: 1px solid #eeeeee;
}

.header-container {
    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* LOGO */

.logo img {
    width: 170px;
    height: auto;
}


/* NAVIGATION */

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav a {
    font-size: 20px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.nav a:hover {
    color: #0057b8;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 8px;

    background: transparent;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    margin: 5px auto;

    background-color: #123d7a;
    border-radius: 2px;

    transition: 0.25s ease;
}


/* HEADER BUTTON */

.header-button {
    background-color: #ffd700;
    color: #17233c;

    padding: 13px 22px;
    border-radius: 5px;

    font-size: 14px;
    font-weight: 700;

    transition: transform 0.2s ease;
}

.header-button:hover {
    transform: translateY(-2px);
}


/* =========================
   HERO
========================= */

.hero {
    background-color: #f7faff;
}

.hero-container {
    min-height: 570px;

    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;
    gap: 60px;
}


/* HERO TEXT */

.hero-content {
    padding: 40px 0;
}

.hero-label {
    margin-bottom: 18px;

    color: #0057b8;

    font-size: 14px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.hero h1 {
    max-width: 600px;

    margin-bottom: 22px;

    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.05;
    letter-spacing: -2px;

    color: #123d7a;
}

.hero-description {
    max-width: 540px;

    margin-bottom: 32px;

    font-size: 18px;
    line-height: 1.6;

    color: #123d7a;
}


/* HERO BUTTONS */

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 50px;
    padding: 0 25px;

    border-radius: 5px;

    font-size: 15px;
    font-weight: 700;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.10);
}

.button-blue {
    background-color: #0057b8;
    color: #ffffff;
}

.button-yellow {
    background-color: #ffd700;
    color: #17233c;
}


/* =========================
   HERO IMAGE
========================= */

.hero-image {
    height: 440px;

    overflow: hidden;

    border-radius: 10px;
}

.hero-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

/* =========================
   À PROPOS
========================= */

.about {
    padding: 40px 0;
    background-color: #ffffff;
}

.about-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 90px;
    align-items: center;
}


/* LEFT TEXT */

.section-label {
    margin-bottom: 14px;

    color: #0057b8;

    font-size: 13px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.about-text h2 {
    max-width: 650px;
    margin-bottom: 25px;

    font-size: 38px;
    line-height: 1.2;

    color: #123d7a;
}

.about-text > p:not(.section-label) {
    max-width: 650px;
    margin-bottom: 16px;

    font-size: 16px;
    line-height: 1.7;

    color: #123d7a;
}


/* TEAM */

.about-team {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.team-member {
    display: flex;
    align-items: center;
    gap: 18px;

    padding: 15px;

    border-radius: 10px;

    transition:
        transform 0.2s ease,
        background-color 0.2s ease;
}

.team-member:hover {
    transform: translateX(4px);
    background-color: #f7faff;
}

.team-member img {
    width: 72px;
    height: 72px;

    border-radius: 50%;

    object-fit: cover;
    flex-shrink: 0;
}

.team-member h3 {
    margin-bottom: 5px;

    font-size: 17px;
    color: #123d7a;
}

.team-member p {
    font-size: 14px;
    color: #123d7a;
}

/* TEAM BUTTON */

.team-button {
    align-self: flex-start;

    margin-top: 5px;
    padding: 11px 20px;

    background-color: #0057b8;
    color: #ffffff;

    border: none;
    border-radius: 6px;

    font-family: inherit;
    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.team-button:hover {
    transform: translateY(-2px);

    box-shadow: 0 6px 16px rgba(0, 87, 184, 0.15);
}

/* =========================
   TEAM MODAL
========================= */

.team-modal {
    position: fixed;
    inset: 0;

    z-index: 2000;

    display: none;

    align-items: center;
    justify-content: center;

    padding: 30px;
}

.team-modal.active {
    display: flex;
}

.team-modal-overlay {
    position: absolute;
    inset: 0;

    background-color: rgba(5, 20, 45, 0.78);
}

.team-modal-content {
    position: relative;
    z-index: 1;

    width: min(1000px, 92%);
    max-height: 90vh;

    padding: 18px;

    background-color: #ffffff;

    border-radius: 12px;

    overflow: auto;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.team-modal-content img {
    width: 100%;
    height: auto;

    display: block;

    border-radius: 8px;
}

.team-modal-close {
    position: absolute;

    top: 10px;
    right: 12px;

    z-index: 2;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #ffffff;
    color: #123d7a;

    border: none;
    border-radius: 50%;

    font-size: 28px;
    line-height: 1;

    cursor: pointer;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* =========================
   NOS ACTIONS
========================= */

.actions {
    padding: 40px 0;
    background-color: #f7faff;
}

.section-heading {
    max-width: 700px;
    margin-bottom: 45px;
}

.section-heading h2 {
    margin-bottom: 15px;

    font-size: 38px;
    line-height: 1.2;

    color: #123d7a;
}

.section-heading > p:not(.section-label) {
    font-size: 16px;
    line-height: 1.7;

    color: #123d7a;
}


/* ACTION CARDS */

.actions-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.action-card {
    min-height: 220px;

    padding: 25px 20px;

    background-color: #ffffff;

    border: 1px solid #edf1f7;
    border-radius: 10px;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(25, 55, 100, 0.08);
}

.action-icon {
    display: flex;
    justify-content: center;
    align-items: center;

    margin-bottom: 20px;

    font-size: 32px;
}

.action-card h3 {
    margin-bottom: 12px;

    font-size: 17px;
    line-height: 1.3;

    color: #123d7a;

    text-align: center;
}

.action-card p {
    font-size: 14px;
    line-height: 1.6;

    color: #123d7a;
}

/* =========================
   ACTUALITÉS
========================= */

.news {
    padding: 40px 0;
    background-color: #ffffff;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.news-card {
    overflow: hidden;

    background-color: #ffffff;

    border: 1px solid #edf1f7;
    border-radius: 12px;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.news-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 12px 30px rgba(25, 55, 100, 0.08);
}

.news-card img {
    width: 100%;
    height: 230px;

    object-fit: cover;
}

.news-content {
    padding: 22px;
}

.news-date {
    margin-bottom: 10px;

    font-size: 13px;
    font-weight: 700;

    color: #0057b8;
}

.news-content h3 {
    margin-bottom: 12px;

    font-size: 19px;
    line-height: 1.35;

    color: #123d7a;
}

.news-content > p:not(.news-date) {
    margin-bottom: 18px;

    font-size: 14px;
    line-height: 1.6;

    color: #123d7a;
}

.news-link {
    font-size: 14px;
    font-weight: 700;

    color: #0057b8;
}

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

/* SOCIAL NETWORKS */

.news-social {
    margin-top: 35px;
    padding: 24px 28px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    background-color: #eef5ff;
    border-radius: 12px;
}

.news-social-text {
    max-width: 600px;
}

.news-social-label {
    display: block;
    margin-bottom: 6px;

    font-size: 13px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 1px;

    color: #0057b8;
}

.news-social p {
    font-size: 16px;
    line-height: 1.6;

    color: #123d7a;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 18px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;

    padding: 10px 14px;

    border-radius: 8px;

    background-color: #ffffff;

    font-size: 14px;
    font-weight: 700;

    color: #123d7a;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.social-link:hover {
    transform: translateY(-2px);

    box-shadow: 0 6px 16px rgba(0, 87, 184, 0.10);
}

.social-icon {
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background-color: #0057b8;
    color: #ffffff;

    font-size: 16px;
    font-weight: 700;
}

/* =========================
   NOUS SOUTENIR
========================= */

.support {
    padding: 40px 0;

    background-color: #123d7a;

    color: #ffffff;
}

.support-container {
    display: grid;
    grid-template-columns: 1fr auto;

    align-items: center;

    gap: 80px;
}


/* LEFT SIDE */

.support .section-label {
    color: #ffd700;
}

.support-content {
    max-width: 650px;
}

.support-content h2 {
    margin-bottom: 18px;

    font-size: 38px;
    line-height: 1.2;

    color: #ffffff;
}

.support-content > p:not(.section-label) {
    max-width: 600px;

    margin-bottom: 28px;

    font-size: 16px;
    line-height: 1.7;

    color: rgba(255, 255, 255, 0.8);
}


/* QR SIDE */

.support-qr {
    display: flex;

    align-items: center;

    gap: 22px;
}

.qr-placeholder {
    width: 145px;
    height: 145px;

    flex-shrink: 0;

    background-color: #ffffff;
    border-radius: 10px;

    overflow: hidden;
}

.qr-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.qr-text {
    max-width: 210px;
}

.qr-text h3 {
    margin-bottom: 7px;

    font-size: 18px;

    color: #ffffff;
}

.qr-text p {
    font-size: 14px;
    line-height: 1.6;

    color: rgba(255, 255, 255, 0.75);
}

/* =========================
   CONTACT
========================= */

.contact {
    padding: 40px 0;
    background-color: #f7faff;
}

.contact-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;

    gap: 90px;

    align-items: start;
}


/* CONTACT INFO */

.contact-info h2 {
    max-width: 470px;

    margin-bottom: 20px;

    font-size: 38px;
    line-height: 1.2;

    color: #17233c;
}

.contact-text {
    max-width: 470px;

    margin-bottom: 35px;

    font-size: 16px;
    line-height: 1.7;

    color: #5e6675;
}

.contact-email {
    display: flex;
    flex-direction: column;

    gap: 7px;
}

.contact-email-label {
    font-size: 13px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 1px;

    color: #7b8494;
}

.contact-email a {
    font-size: 18px;
    font-weight: 700;

    color: #0057b8;
}


/* FORM */

.contact-form {
    padding: 32px;

    background-color: #ffffff;

    border-radius: 12px;

    border: 1px solid #edf1f7;
}

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

    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;

    gap: 8px;

    margin-bottom: 20px;
}

.form-group label {
    font-size: 14px;
    font-weight: 700;

    color: #17233c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 14px 15px;

    border: 1px solid #dfe5ec;
    border-radius: 6px;

    background-color: #ffffff;

    font-family: inherit;
    font-size: 15px;

    color: #17233c;

    outline: none;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #0057b8;
}

.contact-form .button {
    border: none;
    cursor: pointer;
}

.form-status {
    margin-top: 18px;

    font-size: 14px;
    line-height: 1.5;
}

.form-status.success {
    color: #1f7a4d;
}

.form-status.error {
    color: #b42318;
}

.contact-form button:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

/* =========================
   FOOTER
========================= */

.footer {
    padding: 40px 0 20px;

    background-color: #0d2547;

    color: #ffffff;
}


/* MAIN FOOTER */

.footer-container {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.3fr 1fr;
    gap: 55px;
    padding-bottom: 20px;
}


/* LOGO & ASSOCIATION */

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

.footer-logo {
    display: flex;
    justify-content: center;
    width: 100%;
}

.footer-logo img {
    width: 200px;
    height: auto;
    margin-bottom: 20px;
}

/* FOOTER COLUMNS */

.footer-column {
    display: flex;
    flex-direction: column;

    align-items: flex-start;

    gap: 11px;
}

.footer-column h3 {
    margin-bottom: 7px;

    font-size: 14px;
    font-weight: 700;

    color: #ffffff;
}

.footer-column a,
.footer-column p {
    font-size: 13px;
    line-height: 1.5;

    color: rgba(255, 255, 255, 0.65);

    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #ffd700;
}


/* BOTTOM */

.footer-bottom {
    padding: 22px 0;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p,
.footer-bottom a {
    font-size: 12px;

    color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
    display: flex;
    gap: 22px;
}

.footer-bottom a:hover {
    color: #ffffff;
}


/* DEVELOPER CREDIT */

.footer-credit {
    padding-top: 15px;

    border-top: 1px solid rgba(255, 255, 255, 0.07);

    text-align: center;
}

.footer-credit p {
    font-size: 11px;

    color: rgba(255, 255, 255, 0.35);
}

.footer-credit span {
    color: rgba(255, 255, 255, 0.55);
}

.footer-credit a {
    color: rgba(255, 255, 255, 0.55);
}

.footer-credit a:hover {
    color: #ffffff;
}

/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

    /* HEADER */

    .header-container {
        position: relative;
    }
    
    .menu-toggle {
        display: block;
        margin-left: auto;
    }
    
    .nav {
        display: none;
    
        position: absolute;
        top: 74px;
        left: 0;
        right: 0;
    
        z-index: 1000;
    
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    
        padding: 15px 5% 20px;
    
        background-color: #ffffff;
        border-top: 1px solid #eeeeee;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    }
    
    .nav.active {
        display: flex;
    }
    
    .nav a {
        width: 100%;
        padding: 13px 0;
    
        font-size: 17px;
        border-bottom: 1px solid #eeeeee;
    }

    .header-container {
        min-height: 74px;
    }


    /* HERO */

    .hero-container {
        grid-template-columns: 1fr;
        gap: 0;
        min-height: auto;
    }

    .hero-content {
        padding: 45px 0 30px;
    }

    .hero-image {
        height: 380px;
        margin-bottom: 40px;
    }


    /* À PROPOS */

    .about {
        padding: 40px 0;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-text h2 {
        font-size: 32px;
    }

    .about-team {
        gap: 15px;
    }

    .team-button {
        margin-top: 0;
    }
    
    .team-modal-content {
        width: 95%;
        max-height: 88vh;
    }


    /* ACTIONS */

    .actions {
        padding: 40px 0;
    }

    .actions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-heading {
        margin-bottom: 30px;
    }

    .section-heading h2 {
        font-size: 32px;
    }


    /* NEWS */

    .news {
        padding: 40px 0;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }


    /* SUPPORT */

.support {
    padding: 32px 0;
}

.support-container {
    grid-template-columns: 1fr auto;
    gap: 30px;

    align-items: center;
}

.support-content {
    max-width: 520px;
}

.support-content h2 {
    font-size: 30px;
    margin-bottom: 14px;
}

.support-content > p:not(.section-label) {
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 20px;
}

.support-content .button {
    min-height: 44px;
    padding: 0 20px;
    font-size: 14px;
}

.support-qr {
    width: auto;

    display: flex;
    flex-direction: row;

    align-items: center;
    justify-content: flex-end;

    gap: 14px;

    text-align: left;
}

.qr-placeholder {
    width: 110px;
    height: 110px;

    margin: 0;
}

.qr-text {
    max-width: 170px;
    text-align: left;
}

.qr-text h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.qr-text p {
    font-size: 12px;
    line-height: 1.45;
}


    /* CONTACT */

    .contact {
        padding: 40px 0;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-info h2 {
        font-size: 32px;
    }


    /* FOOTER */

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-about,
    .footer-logo {
        justify-content: flex-start;
    }

    .footer-logo img {
        width: 180px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .footer-credit p {
        font-size: 10px;
    }
    
    .footer-credit a {
        font-size: 10px;
    }

    .footer-credit {
        padding-top: 12px;
    }

    .footer-credit a {
        color: rgba(255, 255, 255, 0.55);
    }
    
    .footer-credit a:hover {
        color: #ffffff;
    }
}


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

@media (max-width: 600px) {

    .container {
        width: 90%;
    }


    /* HEADER */

    .header-container {
        min-height: 68px;
        gap: 12px;
    }

    .logo img {
        width: 120px;
    }

    .header-button {
        padding: 10px 13px;
        font-size: 12px;
        white-space: nowrap;
    }

    .nav {
        top: 68px;
    }


    /* HERO */

    .hero-content {
        padding: 35px 0 25px;
    }

    .hero-label {
        margin-bottom: 12px;
        font-size: 11px;
    }

    .hero h1 {
        font-size: 34px;
        line-height: 1.1;
        letter-spacing: -1px;
        margin-bottom: 18px;
    }

    .hero-description {
        font-size: 15px;
        line-height: 1.55;
        margin-bottom: 25px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .button {
        width: 100%;
        min-height: 47px;
    }

    .hero-image {
        height: 260px;
        margin-bottom: 30px;
    }


    /* GENERAL SECTION TITLES */

    .section-heading {
        margin-bottom: 25px;
    }

    .section-heading h2,
    .about-text h2,
    .support-content h2,
    .contact-info h2 {
        font-size: 28px;
    }


    /* À PROPOS */

    .about {
        padding: 32px 0;
    }

    .about-container {
        gap: 22px;
    }

    .about-text h2 {
        margin-bottom: 18px;
    }

    .about-text > p:not(.section-label) {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 12px;
    }

    .about-team {
        gap: 8px;
    }

    .team-member {
        padding: 10px 5px;
        gap: 14px;
    }

    .team-member img {
        width: 62px;
        height: 62px;
    }

    .team-button {
        width: 100%;
        text-align: center;
    }
    
    .team-modal {
        padding: 15px;
    }
    
    .team-modal-content {
        width: 100%;
        padding: 12px;
        max-height: 92vh;
    }
    
    .team-modal-close {
        width: 34px;
        height: 34px;
    
        font-size: 24px;
    }


    /* ACTIONS */

    .actions {
        padding: 32px 0;
    }

    .actions-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .action-card {
        min-height: auto;
        padding: 20px 18px;
    }

    .action-icon {
        margin-bottom: 12px;
        font-size: 30px;
    }

    .action-card h3 {
        margin-bottom: 9px;
    }


    /* NEWS */

    .news {
        padding: 32px 0;
    }

    .news-grid {
        gap: 15px;
    }

    .news-card img {
        height: 210px;
    }

    .news-content {
        padding: 18px;
    }

    .news-social {
        margin-top: 25px;
        padding: 18px;

        flex-direction: column;
        align-items: flex-start;

        gap: 18px;
    }

    .news-social p {
        font-size: 14px;
    }

    .social-links {
        width: 100%;
        gap: 10px;
    }

    .social-link {
        flex: 1;
        justify-content: center;
        padding: 9px 10px;
    }


    /* SUPPORT */

    .support {
        padding: 32px 0;
    }

    .support-container {
        gap: 28px;
    }

    .support-content > p:not(.section-label) {
        margin-bottom: 22px;
    }

    .support-qr {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    
        gap: 15px;
    
        text-align: center;
    }

    .qr-placeholder {
        width: 125px;
        height: 125px;
    }

    .qr-placeholder img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 10px;
    }

    .qr-text {
        max-width: 280px;
        text-align: center;
    }


    /* CONTACT */

    .contact {
        padding: 32px 0;
    }

    .contact-container {
        gap: 25px;
    }

    .contact-text {
        margin-bottom: 25px;
        font-size: 15px;
    }

    .contact-form {
        padding: 18px;
    }

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

    .form-group {
        margin-bottom: 16px;
    }

    .form-status {
        margin-top: 14px;
        font-size: 13px;
    }


    /* FOOTER */

    .footer {
        padding: 32px 0 16px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-bottom: 25px;

        text-align: center;
    }

    .footer-about,
    .footer-logo {
        justify-content: center;
    }

    .footer-logo img {
        width: 150px;
        margin-bottom: 0;
    }

    .footer-column {
        align-items: center;
        gap: 8px;
    }

    .footer-bottom {
        padding: 18px 0;

        align-items: center;
        text-align: center;

        gap: 16px;
    }

    .footer-legal {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .footer-credit {
        padding-top: 12px;
    }
}
