

    .faq-container {
      max-width: 850px;
      margin: auto;
      background-color: #ffffff;
      padding: 40px 30px;
      border-radius: 12px;
      box-shadow: 0 15px 25px rgba(0, 0, 0, 0.05);
    }

    h2 {
      text-align: center;
      color: #333333;
      margin-bottom: 30px;
      font-size: 28px;
      font-weight: 700;
    }

    .faq-box {
      border-bottom: 1px solid #dddddd;
      padding: 20px 0;
      transition: all 0.3s ease;
    }

    .faq-box:hover {
      background-color: #f9f9f9;
    }

    .faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 18px;
      font-weight: 600;
      color: red !important ;
      cursor: pointer;
    }

    .faq-question:hover {
      color: 521C0D;
    }

    .icon-toggle {
      font-size: 24px;
      font-weight: bold;
      color: #555555;
      width: 30px;
      text-align: center;
      transition: transform 0.3s ease;
    }

    .faq-answer {
      margin-top: 10px;
      font-size: 16px;
      color: #444444;
      line-height: 1.6;
      display: none;
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .faq-box.active .faq-answer {
      display: block;
      opacity: 1;
    }

    .faq-box.active .icon-toggle::before {
      content: "–";
    }

    .icon-toggle::before {
      content: "+";
    }
