:root {
    --primary: #FDA12B;
    --secondary: #8D9297;
    --light: #F8F9FA;
    --dark: #182333;
}

/* tarifs*/

    body {
    background: 
        linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('/img/backtarif.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    }

    .pricing-section {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: center;
    }

    .pricing-card {
      background: var(--dark);
      border: 3px solid #FDA12B;
      border-radius: 5px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      max-width: 320px;
      flex: 1 1 auto; 
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }

    .pricing-card.best-choice {
      border-color: #f57c00;
      box-shadow: 0 0 25px rgba(245, 124, 0, 0.3);
    }

    .pricing-header {
      background: var(--primary);
      color: white;
      padding: 10px;
      text-align: center;
      font-size: 1.5em;
    }

    .pricing-body {
      padding: 10px;
      flex-grow: 1;
    }

    .price {
      font-size: 1.8em;
      color: #f57c00;
      margin: 15px 0;
      text-align: center;
    }

    ul.features {
      list-style: none;
      padding: 0;
    }

    ul.features li {
      margin: 10px 0;
      padding-left: 1em;
      position: relative;
    }

    ul.features li::before {
      content: "✔";
      color: #FDA12B;
      position: absolute;
      left: 0;
    }

    .pricing-footer {
      padding: 20px;
      text-align: center;
    }

    .pricing-footer button {
      background: #FDA12B;
      color: white;
      border: none;
      padding: 12px 25px;
      border-radius: 8px;
      font-size: 1em;
      cursor: pointer;
      transition: background 0.3s;
    }

    .pricing-footer button:hover {
      background: #f57c00;
    }

    @media (max-width: 768px) {
      .pricing-section {
        flex-direction: column;
        align-items: center;
      }
    }

    .pricing-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 25px rgba(0, 0, 0, 0.418);
        transition: all 0.3s ease-in-out;
    }

    /* fin tarifs */
