      /* Général */
      .modal-content-newsletter {
        border-radius: 10px;
        overflow: hidden;
        padding: 0;
        max-width: 400px;
        margin: auto;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -ms-border-radius: 10px;
        -o-border-radius: 10px;
}

    /* Image en haut */
    .modal-header-image {
        background: url('../img/optin-bg.jpg') no-repeat center center;
        background-size: cover;
        height: 200px;
    }

    /* Contenu du modal */
    .modal-body {
        padding: 20px;
        text-align: center;
    }

    .modal-body h3 {
        font-weight: bold;
        margin: 15px 0;
        color: var(--bleumarine);
        font-family: var(--font-primary);
        font-size: 1.5rem;
        padding: 0 20px;
    }

    .modal-body p {
        font-size: 16px;
        color: var(--bleumarine);
        font-family: var(--font-primary);
        text-align: center;
        margin: 15px auto;
        text-indent: 0!important;
    }

    .titre-optin {
        font-size: 1.5rem!important;
        font-weight: bold!important;
        color: var(--bleumarine)!important;
        font-family: var(--font-tertiary)!important;
        margin: 15px 0!important;
    }
    .body-optin {
        padding: 2rem!important;
    }

    /* .modal-body input[type="text"],
   .modal-body input[type="email"] {
      margin-bottom: 10px;
      padding: 12px;
      width: 100%;
      font-size: 14px;
      border: 1px solid #ddd;
      border-radius: 5px;
   } */
    .newsletter-input {
        margin-bottom: 10px;
        padding: 12px;
        width: 100%;
        font-size: 14px;
        border: 1px solid #ddd;
        border-radius: 5px;
    }

    .newsletter-form input[type="text"],
    .newsletter-form input[type="email"] {
        margin-bottom: 10px;
        padding: 12px;
        width: 100%;
        font-size: 14px!important;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-family: var(--font-primary);
    }

    /* .modal-body input:focus {
      border-color: #ff4b4b;
      outline: none;
      box-shadow: 0 0 5px rgba(255, 75, 75, 0.5);
   } */

    /* Checkbox */
    .form-check {
        text-align: left;
        margin-top: 15px;
        margin-bottom: 15px !important;
        display: flex!important;
        gap: 10px!important;

    }

    .form-check-label {
        font-size: 14px;
        color: var(--bleumarine);
        font-family: var(--font-primary);
        position: relative;
        top: 4px;
    }

    /* Bouton principal */
    .modal-body .btn-primary {
        background-color: #ff4b4b;
        color: #fff;
        border: none;
        padding: 12px;
        width: 100%;
        font-size: 16px;
        font-weight: bold;
        border-radius: 5px;
        transition: background-color 0.3s ease;
        cursor: not-allowed;
        opacity: 0.6;
    }

    .modal-body .btn-primary.active {
        cursor: pointer;
        opacity: 1;
        background-color: #ff4b4b;
    }

    .modal-body .btn-primary:hover {
        background-color: var(--orangeocre);
    }

    /* Texte en bas */
    .modal-footer {
        text-align: center;
        font-size: 12px;
        color: #777;
        padding: 15px;
    }

    .modal-footer a {
        color: #ff4b4b;
        text-decoration: none;
    }

    .modal-footer a:hover {
        text-decoration: underline;
    }

    .btn-primary:disabled {
        background-color: var(--marron) !important;
        color: #fff;
    }


    /* Bouton Close */
    .btn-close-modal {
        position: absolute;
        top: 10px;
        right: 15px;
        background: none;
        border: none;
        font-size: 20px;
        cursor: pointer;
        color: #fff;
    }

    .btn-close-modal:hover {
        color: #ff4b4b;
    }

    .is-invalid {
        border: 1px solid red;
        box-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
    }

    /* Modal Styles */
    .modal-header {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .modal-title {
        font-size: 1rem;
        font-weight: bold;
    }

    .modal-body {
        font-size: 1.2rem;
    }

    #modalIcon {
        font-size: 2rem;
    }

    /* Couleurs pour les types de message */
    .text-success {
        color: #28a745 !important;
        /* Vert pour succès */
        text-align: center;
        display: block;
        /* S'assurer qu'il est visible */
    }

    .text-danger {
        color: #dc3545 !important;
        /* Rouge pour erreur */
        text-align: center;
        display: block;
        /* S'assurer qu'il est visible */
    }

    #modalIcon {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 10px;
    }


    .modal-content {
        background-color: #fff;
        color: #333;
        border-radius: 15px;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .btn-primary {
        background-color: #007bff;
        border-color: #007bff;
    }

    .btn-primary:hover {
        background-color: #0056b3;
        border-color: #0056b3;
    }

    .btn-close {
        text-align: right;
    }

    /* Styles spécifiques au modal de feedback */
    #messageModal .modal-title {
        font-size: 1.8rem;
        font-weight: bold;
        margin-bottom: 10px;
    }

    #messageModal .modal-body {
        font-size: 1.2rem;
        color: inherit;
        /* Hérite de la couleur définie dans le script */
        text-align: center;
        margin-bottom: 20px;
    }

    #messageModal #modalIcon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    @media (max-width: 576px) {
        .sup-navbar .contact-info {
            flex-wrap: wrap;
            justify-content: center;
        }

        .sup-navbar .social-icons {
            margin-top: 10px;
            text-align: center;
        }
    }