.container-2 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .faq-section {
    padding: 60px 0;
  }
  
  .faq-header {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .faq-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--gold), var(--bronze));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    color: #fff;
  }
  
  .faq-subtitle {
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
  }
  
  .faq-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .faq-item {
    background: rgba(17, 17, 17, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .faq-item:hover {
    border-color: rgba(242, 194, 56, 0.3);
    transform: translateY(-2px);
  }
  
  .faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
  }
  
  .faq-question span {
    flex: 1;
  }
  
  .faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
    transition: transform 0.3s ease;
  }
  
  .faq-icon::before,
  .faq-icon::after {
    content: '';
    position: absolute;
    background-color: var(--gold);
    border-radius: 2px;
  }
  
  .faq-icon::before {
    width: 2px;
    height: 16px;
    top: 4px;
    left: 11px;
    transition: transform 0.3s ease;
  }
  
  .faq-icon::after {
    width: 16px;
    height: 2px;
    top: 11px;
    left: 4px;
  }
  
  .faq-item.open .faq-icon::before {
    transform: rotate(90deg);
  }
  
  .faq-answer {
    height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: all 0.3s ease;
    opacity: 0;
  }
  
  .faq-item.open .faq-answer {
    height: auto;
    padding: 0 20px 20px;
    opacity: 1;
  }
  
  .dighlight {
    color: var(--bronze);
    font-weight: 600;
  }
  
  .faq-answer a {
    color: var(--gold);
    text-decoration: none;
    transition: opacity 0.2s ease;
  }
  
  .faq-answer a:hover {
    opacity: 0.8;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .faq-title {
      font-size: 2rem;
    }
    
    .faq-question {
      font-size: 1rem;
      padding: 16px;
    }
    
    .faq-section {
      padding: 40px 0;
    }
  }
  
  @media (max-width: 480px) {
    .faq-title {
      font-size: 1.8rem;
    }
    
    .faq-container {
      gap: 15px;
    }
    
    .faq-question {
      padding: 14px;
    }
  }