/* FAQ Hero */
.faq-hero {
    background: linear-gradient(rgba(29, 32, 36, 0.8), rgba(29, 32, 36, 0.8)),
      url("../../images/hero-bg14.jpg") center/cover no-repeat;
    height: 100vh;
    min-height: 500px;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
    margin-top: 80px;
  }
  
  .faq-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  }
  
  .faq-hero .lead {
    font-size: 1.3rem;
    margin-bottom: 30px;
  }
  
  .search-container {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
  }
  
  .search-box {
    display: flex;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 10px 20px;
    backdrop-filter: blur(5px);
  }
  
  .search-box input {
    flex: 1;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.1rem;
    padding: 10px;
  }
  
  .search-box input::placeholder {
    color: rgba(255, 255, 255, 0.7);
  }
  
  .search-box input:focus {
    outline: none;
  }
  
  .search-box button {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0 10px;
  }
  
  .search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    margin-top: 10px;
    max-height: 400px;
    overflow-y: auto;
    display: none;
    z-index: 1000;
  }
  
  .search-results.active {
    display: block;
  }
  
  .search-result-item {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    color: var(--text-color);
    text-align: left;
  }
  
  .search-result-item:hover {
    background-color: #f9f9f9;
  }
  
  .search-result-item h4 {
    margin-bottom: 5px;
    color: var(--secondary-color);
  }
  
  .search-result-item p {
    font-size: 0.9rem;
    color: var(--text-light);
  }
  
  .search-result-item .category {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 0.7rem;
    margin-top: 5px;
  }
  
  .no-results {
    padding: 20px;
    color: var(--text-light);
    text-align: center;
  }
  
  /* FAQ Content */
  .faq-content {
    padding: 80px 0;
    background-color: var(--light-color);
  }
  
  .faq-intro {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 40px;
    text-align: center;
  }
  
  .contact-notice {
    background-color: rgba(57, 125, 241, 0.1);
    border-left: 4px solid var(--accent-color);
    padding: 20px;
    margin: 25px 0 0;
    display: flex;
    align-items: center;
    text-align: left;
  }
  
  .contact-notice i {
    margin-right: 15px;
    font-size: 1.5rem;
    color: var(--accent-color);
  }
  
  .faq-categories {
    margin-bottom: 40px;
  }
  
  .category-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
  }
  
  .category-btn {
    background: var(--white);
    border: 1px solid #ddd;
    padding: 8px 20px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
  }
  
  .category-btn:hover {
    background: #f0f0f0;
  }
  
  .category-btn.active {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
  }
  
  /* FAQ Sections */
  .faq-section {
    margin-bottom: 50px;
  }
  
  .faq-section-title {
    color: var(--secondary-color);
    margin-bottom: 25px;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
  }
  
  .faq-section-title i {
    margin-right: 15px;
    color: var(--accent-color);
  }
  
  /* Accordion */
  .accordion {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
  }
  
  .accordion-item {
    border-bottom: 1px solid #eaeaea;
    background-color: var(--white);
  }
  
  .accordion-item:last-child {
    border-bottom: none;
  }
  
  .accordion-header {
    width: 100%;
    padding: 20px 25px;
    background-color: var(--white);
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
  }
  
  .accordion-header:hover {
    background-color: #f9f9f9;
  }
  
  .accordion-header.active {
    background-color: var(--light-color);
    color: var(--accent-color);
  }
  
  .accordion-header i {
    color: var(--accent-color);
    transition: transform 0.3s ease;
  }
  
  .accordion-header.active i {
    transform: rotate(180deg);
  }
  
  .accordion-content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #f9f9f9;
  }
  
  .accordion-content.active {
    padding: 25px;
  }
  
  .accordion-content p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: var(--text-light);
  }
  
  .accordion-content ul {
    margin-bottom: 15px;
    padding-left: 20px;
  }
  
  .accordion-content li {
    margin-bottom: 8px;
    line-height: 1.6;
  }
  
  /* Special Content Styles */
  .fee-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
  }
  
  .fee-table th,
  .fee-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
  }
  
  .fee-table th {
    background-color: #f5f5f5;
    font-weight: 600;
  }
  
  .crypto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    margin: 20px 0;
  }
  
  .crypto-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #f5f5f5;
    border-radius: 5px;
  }
  
  .forex-pairs {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 20px 0;
  }
  
  .forex-category {
    flex: 1;
    min-width: 200px;
  }
  
  .forex-category h4 {
    margin-bottom: 10px;
    color: var(--secondary-color);
  }
  
  .platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
  }
  
  .platform-card {
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
  }
  
  .platform-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 15px;
  }
  
  .platform-card h4 {
    margin-bottom: 10px;
    color: var(--secondary-color);
  }
  
  .payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px 0;
  }
  
  .method {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: #f5f5f5;
    border-radius: 5px;
  }
  
  /* Contact Support */
  .contact-support {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    margin-top: 40px;
  }
  
  .contact-support h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.8rem;
  }
  
  .support-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
  }
  
  /* Responsive Styles */
  @media (max-width: 992px) {
    .faq-hero h1 {
      font-size: 2.5rem;
    }
  
    .faq-hero .lead {
      font-size: 1.1rem;
    }
  }
  
  @media (max-width: 768px) {
    .faq-hero {
      height: 40vh;
      min-height: 350px;
    }
  
    .search-box {
      padding: 8px 15px;
    }
  
    .search-box input {
      font-size: 1rem;
    }
  
    .faq-section-title {
      font-size: 1.5rem;
    }
  
    .accordion-header {
      padding: 15px 20px;
      font-size: 1rem;
    }
  
    .accordion-content {
      padding: 0 20px;
    }
  
    .accordion-content.active {
      padding: 20px;
    }
  
    .support-options {
      flex-direction: column;
      gap: 10px;
    }
  }
  
  @media (max-width: 576px) {
    .faq-hero h1 {
      font-size: 2rem;
    }
  
    .category-buttons {
      justify-content: flex-start;
    }
  
    .faq-section-title {
      font-size: 1.3rem;
    }
  
    .contact-support {
      padding: 30px 20px;
    }
  }