      /* FAQ Section Styles */
    .luxury-faq-section {
      background-color: #000000;
      padding: 100px 0;
    }
    .faq-header {
      margin-bottom: 60px;
    }
    .faq-header h2 {
      font-family: Coldiac;
      font-size: 42px;
      font-weight: 400;
      text-transform: uppercase;
      color: #d4af37;
      margin: 0;
    }
    .faq-wrapper {
      max-width: 1200px;
      margin: 0 auto;
    }
    .faq-item {
      background-color: #1a1a1a;
      border-radius: 8px;
      margin-bottom: 20px;
      overflow: hidden;
      transition: all 0.3s ease;
    }
    .faq-item:hover {
      border-color: #d4af37;
    }
    .faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 25px 30px;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .faq-question h3 {
      font-family: McQueen;
      font-size: 20px;
      font-weight: 500;
      color: #ffffff;
      margin: 0;
      padding-right: 20px;
    }
    .faq-question i {
      font-size: 1.2rem;
      color: #ffffff;
      transition: transform 0.3s ease;
      flex-shrink: 0;
    }
    .faq-item.active .faq-question i {
      transform: rotate(180deg);
    }
    .faq-answer{
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease, padding 0.35s ease;
    }
    .faq-item.active .faq-answer{
      padding: 0 30px 30px 30px; /* keep your padding */
    }

    .faq-answer p {
      font-family: 'Poppins', sans-serif;
      font-size: 0.95rem;
      line-height: 1.7;
      color: #cccccc;
      margin: 0;
    }
    /* Responsive */
    @media (max-width: 768px) {
      .luxury-faq-section {
        padding: 60px 0;
      }
      .faq-header h2 {
        font-family: Coldiac;
        font-size: 1.8rem;
      }
      .faq-question {
        padding: 20px;
      }
      .faq-question h3 {
        font-family: McQueen;
        font-size: 1rem;
      }
      .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
      }
      .faq-answer p {
        font-family: 'Poppins', sans-serif;
      }
    }
    @media (max-width: 576px) {
      .faq-header h2 {
        font-family: Coldiac;
        font-size: 1.5rem;
      }
      .faq-question h3 {
        font-family: McQueen;
        font-size: 0.95rem;
      }
      .faq-answer p {
        font-family: 'Poppins', sans-serif;
        font-size: 0.9rem;
      }
    }
   