:root {
    --accent: #FF9500;
    --accent-light: rgba(255, 149, 0, 0.1);
    --accent-hover: #e68600;
    --primary: #156380;
    --secondary: #143d50;
    --dark: #333333;
    --light: #ffffff;
    --border-radius: 10px;
    --transition-standard: all 0.3s ease;
  }
  
  /* FAQ Section Styling */
  .faq-section {
    position: relative;
    overflow: hidden;
  }
  
  .faq-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--accent-light) 0%, rgba(255,255,255,0) 70%);
    z-index: 0;
    opacity: 0.7;
  }
  
  /* Custom Accordion Styling */
  .custom-accordion .accordion-item {
    transition: var(--transition-standard);
    border: none;
    overflow: hidden;
    background-color: var(--light);
  }
  
  .custom-accordion .accordion-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05) !important;
  }
  
  .custom-accordion .accordion-button {
    padding: 1.5rem;
    background-color: var(--light);
    color: var(--secondary);
    box-shadow: none !important;
    transition: var(--transition-standard);
  }
  
  .custom-accordion .accordion-button:not(.collapsed) {
    background-color: var(--light);
    color: var(--accent);
  }
  
  .custom-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23FF9500' class='bi bi-plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
    transition: var(--transition-standard);
  }
  
  .custom-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23FF9500' class='bi bi-dash' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
    transform: rotate(0deg);
  }
  
  .custom-accordion .accordion-body {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--muted);
  }
  
  /* FAQ Icon Styling */
  .faq-button-content {
    display: flex;
    align-items: center;
    width: 100%;
  }
  
  .faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--accent-light);
    color: var(--accent);
    transition: var(--transition-standard);
  }
  
  .accordion-button:not(.collapsed) .faq-icon {
    background-color: var(--accent);
    color: var(--light);
  }
  
  /* Animation for FAQ items */
  .faq-item {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .faq-item:nth-child(1) { animation-delay: 0.1s; }
  .faq-item:nth-child(2) { animation-delay: 0.2s; }
  .faq-item:nth-child(3) { animation-delay: 0.3s; }
  .faq-item:nth-child(4) { animation-delay: 0.4s; }
  .faq-item:nth-child(5) { animation-delay: 0.5s; }
  .faq-item:nth-child(6) { animation-delay: 0.6s; }
  .faq-item:nth-child(7) { animation-delay: 0.7s; }
  .faq-item:nth-child(8) { animation-delay: 0.8s; }
  .faq-item:nth-child(9) { animation-delay: 0.9s; }
  .faq-item:nth-child(10) { animation-delay: 1.0s; }
  .faq-item:nth-child(11) { animation-delay: 1.1s; }
  .faq-item:nth-child(12) { animation-delay: 1.2s; }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .custom-accordion .accordion-button {
      padding: 1.25rem;
    }
    
    .faq-icon {
      min-width: 28px;
      height: 28px;
    }
  }
