@import url("../../../common/css/navbar.css");
@import url("../../../common/css/footer.css");

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #fafafa;
    color: #222;
    margin: 0;
    padding: 0;
  }

  .container {
    max-width: 700px;
    margin: 3rem auto 5rem;
    padding: 0 1.2rem;
    min-height: 100vh;
  }



  h1 {
    font-weight: 800;
    font-size: 2.8rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #1f2b46;
    margin-top: 90px;
    padding-bottom: 40px;
  }

  ul.section-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  ul.section-list li {
    border-bottom: 1px solid #ddd;
  }

  ul.section-list li:last-child {
    border-bottom: none;
  }

  a.section-link {
    display: flex;
    align-items: center;
    padding: 1.3rem 0;
    text-decoration: none;
    color: #333;
    transition: color 0.25s ease;
    cursor: pointer;
  }

  a.section-link:hover,
  a.section-link:focus {
    color: #1c6ea5;
    outline: none;
  }

  a.section-link .icon {
    font-size: 2rem;
    width: 50px;
    /* color: #094f7e; */
    color: #003d66;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 1rem;
    transition: color 0.25s ease;
  }

  a.section-link:hover .icon,
  a.section-link:focus .icon {
    color: #78bfee54;
  }

  a.section-link .content {
    flex-grow: 1;
  }

  a.section-link .content h2 {
    font-size: 1.4rem;
    margin: 0 0 0.3rem;
    font-weight: 700;
  }

  a.section-link .content p {
    margin: 0;
    font-size: 1rem;
    color: #666;
    line-height: 1.4;
  }




  .btn-outline-custom {
    color: #1777b8;              /* Couleur du texte (ta couleur) */
    border-color: #1777b8;       /* Bordure de la même couleur */
  }
  
  .btn-outline-custom:hover,
  .btn-outline-custom:focus,
  .btn-outline-custom:active,
  .btn-outline-custom.active,
  .show > .btn-outline-custom.dropdown-toggle {
    background-color: #1777b8;   /* Fond au survol */
    color: white;                /* Texte blanc quand survolé */
    border-color: #1777b8;       /* Bordure identique */
  }
  

  @media (max-width: 480px) {
    h1 {
      font-size: 2rem;
    }
    a.section-link {
      padding: 1rem 0;
    }
    a.section-link .icon {
      font-size: 1.7rem;
      width: 40px;
      margin-right: 0.8rem;
    }
    a.section-link .content h2 {
      font-size: 1.2rem;
    }
    a.section-link .content p {
      font-size: 0.9rem;
    }
  }