.faq-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #111 100%);
  }
  
  .faq-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #111;
    font-weight: bold;
  }
  
  .faq-list {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .faq-item {
    background: #fff;
    color: #333;
    border-radius: 12px;
    
    margin-bottom: 16px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
  }

  .faq-item:hover {
    box-shadow: 0 4px 12px rgba(254, 199, 111, .4);
  }
  
  .faq-item[open] {
    box-shadow: 0 4px 12px rgba(254, 199, 111, .4);
  }
  
  .faq-item summary {
    padding: 18px 20px;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 500;
    position: relative;
    list-style: none;
  }
  
  .faq-item summary::-webkit-details-marker {
    display: none;
  }
  
  .faq-item .arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
    transform: translateY(-50%) rotate(45deg);
    transition: transform 0.3s ease;
  }
  
  .faq-item[open] .arrow {
    transform: translateY(-50%) rotate(-135deg);
  }
  
  .faq-item p {
    padding: 0 20px 20px;
    color: #444;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.5;
  }
  