
  .faq-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: 'Open Sans', Arial, sans-serif;
  }
  
  .faq-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
  }
  
  .faq-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #e74b94;
    margin: 15px auto 0;
    border-radius: 2px;
  }
  
  .faq-container {
    display: grid;
    gap: 20px;
  }
  
  .faq-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }
  
  .faq-item:hover {
    box-shadow: 0 4px 16px rgba(231,75,148,0.15);
    border-color: #e74b94;
  }
  
  .faq-item.active {
    box-shadow: 0 4px 16px rgba(231,75,148,0.2);
    border-color: #e74b94;
  }
  
  .faq-question {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
    padding: 25px 30px;
    line-height: 1.4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: background 0.3s ease;
    user-select: none;
  }
  
  .faq-question:hover {
    background: #f9f9f9;
  }
  
  .faq-question-text {
    display: flex;
    align-items: flex-start;
    flex: 1;
  }
  
  .faq-question-text::before {
    content: '?';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    background: #e74b94;
    color: #fff;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 700;
    margin-right: 12px;
    flex-shrink: 0;
  }
  
  .faq-toggle {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
    margin-left: 15px;
  }
  
  .faq-toggle::before,
  .faq-toggle::after {
    content: '';
    position: absolute;
    background: #e74b94;
    transition: transform 0.3s ease;
  }
  
  .faq-toggle::before {
    width: 2px;
    height: 16px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  
  .faq-toggle::after {
    width: 16px;
    height: 2px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  
  .faq-item.active .faq-toggle::before {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
  }
  
  .faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px 30px;
  }
  
  .faq-answer p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin: 0;
    padding-left: 40px;
  }
  
  /* Tablet */
  @media (max-width: 768px) {
    .faq-section {
      margin: 40px auto;
    }
    
    .faq-title {
      font-size: 26px;
      margin-bottom: 30px;
    }
    
    .faq-question {
      font-size: 16px;
      padding: 20px;
    }
    
    .faq-answer p {
      font-size: 15px;
      padding-left: 36px;
    }
    
    .faq-item.active .faq-answer {
      padding: 0 20px 20px 20px;
    }
  }
  
  /* Mobile */
  @media (max-width: 480px) {
    .faq-section {
      margin: 30px auto;
      padding: 0 15px;
    }
    
    .faq-title {
      font-size: 22px;
      margin-bottom: 25px;
    }
    
    .faq-question {
      font-size: 15px;
      padding: 18px;
      line-height: 1.5;
    }
    
    .faq-question-text::before {
      min-width: 24px;
      height: 24px;
      font-size: 14px;
      margin-right: 10px;
    }
    
    .faq-toggle {
      width: 20px;
      height: 20px;
      margin-left: 10px;
    }
    
    .faq-toggle::before {
      height: 14px;
    }
    
    .faq-toggle::after {
      width: 14px;
    }
    
    .faq-answer p {
      font-size: 14px;
      padding-left: 34px;
      line-height: 1.5;
    }
    
    .faq-item.active .faq-answer {
      padding: 0 18px 18px 18px;
    }
  }
