  @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

  body {
      /* background: linear-gradient(135deg, #006367 0%, #2a5298 100%); */
      background-color: #5f884678;
      min-height: 100vh;
      padding: 40px 0;
      font-family: 'Montserrat', sans-serif;
  }

  .article-container {
      background: white;
      border-radius: 20px;
      box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
      padding: 60px;
      max-width: 1000px;
      margin: 0 auto;
  }

  .header-section {
      text-align: center;
      margin-bottom: 50px;
  }

  h1 {
      color: #5f8846;
      font-weight: 800;
      margin-bottom: 20px;
      font-size: 2.5rem;
  }

  .subtitle {
      color: #5f8846;
      font-size: 1.2rem;
      line-height: 1.8;
      max-width: 800px;
      margin: 0 auto;
  }

  .station-card {
      /* background: linear-gradient(135deg, #f5f7fa 0%, #d6eceb 100%); */
      background-color: #fffaf2;
      border-radius: 15px;
      padding: 30px;
      margin-bottom: 40px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      position: relative;
      /* transition: transform 0.3s ease; */
  }

  .station-card:hover {
      /* transform: translateY(-5px); */
  }

  h1.station-title {
      font-size: 1.8rem;
  }

  .station-title {
      color: #5f8846;
      font-weight: 700;
      font-size: 1.4rem;
      margin-bottom: 20px;
      /* display: flex; */
      align-items: center;
  }

  .station-icon {
      width: 50px;
      height: 50px;
      background: #5f8846;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.5rem;
      margin-right: 15px;
  }

  .feature-list {
      list-style: none;
      padding-left: 0;
  }

  .feature-list>li {
      padding: 15px 0;
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .feature-list>li:last-child {
      border-bottom: none;
  }

  .feature-title {
      font-weight: 600;
      color: #5f8846;
      margin-bottom: 8px;
  }

  .sub-list {
      list-style: none;
      padding-left: 40px;
      /* margin-top: 10px; */
  }

  .sub-list li {
      /* padding: 5px 0; */
      padding-left: 55px;
      position: relative;
      line-height: 15px;
      ;
      /* color: #546e7a; */
  }

  .sub-list li:before {
      content: "○" !important;
      font-size: 14px !important;
      color: #009294;
      position: absolute;
      left: 0;
      /* font-weight: bold; */
  }

  .highlight-section {
      /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
      background-color: #fffaf2;
      /* color: white; */
      border-radius: 15px;
      padding: 35px;
      margin-top: 40px;
      /* box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3); */
  }

  .highlight-section h2 {
      /* color: white; */
      font-weight: 700;
      margin-bottom: 25px;
      font-size: 1.8rem;
  }

  .highlight-list {
      list-style: none;
      padding-left: 0;
  }

  .highlight-list li {
      padding: 12px 0 12px 35px;
      position: relative;
      font-size: 1.05rem;
  }

  .highlight-list li:before {
      content: "✓";
      color: #5f8846;
      position: absolute;
      left: 0;
      font-weight: bold;
      font-size: 1.3rem;
  }

  .footer-section {
      /* background: #f8f9fa; */
      display: block;
      background-image: url(../../images/papier_vert.jpg);
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      border-radius: 15px;
      padding: 30px;
      margin-top: 40px;
      text-align: center;
      position: relative;
      /* border-left: 5px solid #5f8846; */
  }

  .footer-section::before {
      content: '';
      position: absolute;
      top: -40px;
      left: -30px;
      width: 100px;
      height: 100px;
      background-image: url(../../images/impulsion.png);
      /* Remplacez par le chemin de votre image */
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
      z-index: 1;
      transform: rotate(-25deg);

  }

  .footer-text {
      font-size: 1.1rem;
      color: #ffffff;
      font-weight: 600;
      line-height: 1.8;
      position: relative;
  }

  .titre_div {
      position: absolute;
      top: -10px;
      left: 0px;
      background-image: url(../../images/papier_vert.jpg);
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
      color: white;
      padding: 5px 15px;
      border-radius: 5px;
      transform: rotate(-8deg);
      margin-bottom: 20px !important;

  }

  @media (max-width: 768px) {
      .article-container {
          padding: 30px 20px;
      }

      h1 {
          font-size: 2rem;
      }

      .station-title {
          font-size: 1.5rem;
      }
  }