/* WS-Technik FAQ Section Styles */

:root {
    --ws-primary: #00538C;
    --ws-primary-dark: #003d6b;
    --ws-primary-light: #0066a8;
    --ws-text-dark: #1a3a52;
    --ws-text-gray: #5a6c7d;
    --ws-bg-light: #f5f7fa;
    --ws-white: #ffffff;
    --ws-border: #e1e8ed;
    --ws-shadow: rgba(0, 83, 140, 0.08);
  }
  
  .ws-faq-section {

  }
  
  .ws-faq-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Header */
  .ws-faq-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .ws-faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--ws-text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
  }
  
  .ws-faq-subtitle {
    font-size: 1.125rem;
    color: var(--ws-text-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
  }
  
  /* Grid Layout */
  .ws-faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
  }
  
  /* Category */
  .ws-faq-category {
    background: var(--ws-white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px var(--ws-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .ws-faq-category:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 83, 140, 0.12);
  }
  
  .ws-faq-category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ws-primary);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .ws-faq-icon {
    width: 28px;
    height: 28px;
    color: var(--ws-primary);
    flex-shrink: 0;
  }
  
  /* FAQ Item */
  .ws-faq-item {
    border-bottom: 1px solid var(--ws-border);
    padding: 20px 0;
  }
  
  .ws-faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  
  .ws-faq-item:first-of-type {
    padding-top: 0;
  }
  
  /* Question Button */
  .ws-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    text-align: left;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--ws-text-dark);
    transition: color 0.3s ease;
  }
  
  .ws-faq-question:hover {
    color: var(--ws-primary);
  }
  
  .ws-faq-question:focus {
    outline: 2px solid var(--ws-primary);
    outline-offset: 4px;
    border-radius: 4px;
  }
  
  .ws-faq-chevron {
    width: 20px;
    height: 20px;
    color: var(--ws-primary);
    flex-shrink: 0;
    transition: transform 0.3s ease;
  }
  
  .ws-faq-question[aria-expanded="true"] .ws-faq-chevron {
    transform: rotate(180deg);
  }
  
  /* Answer */
  .ws-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.3s ease;
    opacity: 0;
  }
  
  .ws-faq-answer.active {
    max-height: 500px;
    opacity: 1;
    margin-top: 16px;
  }
  
  .ws-faq-answer p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--ws-text-gray);
    margin: 0;
  }
  
  /* CTA Section */
  .ws-faq-cta {
    text-align: center;
    padding: 48px 32px;
    background: linear-gradient(135deg, var(--ws-primary) 0%, var(--ws-primary-dark) 100%);
    border-radius: 16px;
    color: var(--ws-white);
  }
  
  .ws-faq-cta h3 {
    color: white;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 12px;
  }
  
  .ws-faq-cta p {
    font-size: 1.0625rem;
    margin-bottom: 28px;
    opacity: 0.95;
  }
  
  .ws-faq-button {
    display: inline-block;
    padding: 14px 32px;
    background: var(--ws-white);
    color: var(--ws-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .ws-faq-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }
  
  .ws-faq-button:active {
    transform: translateY(0);
  }
  
  /* Responsive Design */
  @media (min-width: 768px) {
    .ws-faq-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .ws-faq-title {
      font-size: 3rem;
    }
    
    .ws-faq-category:nth-child(3) {
      grid-column: 1 / -1;
      max-width: 50%;
      margin: 0 auto;
    }
  }
  
  @media (min-width: 1024px) {
    .ws-faq-grid {
      grid-template-columns: repeat(3, 1fr);
    }
    
    .ws-faq-category:nth-child(3) {
      grid-column: auto;
      max-width: none;
      margin: 0;
    }
  }
  
  @media (max-width: 767px) {
    .ws-faq-section {
    }
    
    .ws-faq-title {
      font-size: 2rem;
    }
    
    .ws-faq-subtitle {
      font-size: 1rem;
    }
    
    .ws-faq-category {
      padding: 24px 20px;
    }
    
    .ws-faq-category-title {
      font-size: 1.25rem;
    }
    
    .ws-faq-question {
      font-size: 1rem;
    }
    
    .ws-faq-answer p {
      font-size: 0.9375rem;
    }
    
    .ws-faq-cta {
      padding: 36px 24px;
    }
    
    .ws-faq-cta h3 {
      font-size: 1.5rem;
    }
  }
  
  /* Accessibility */
  @media (prefers-reduced-motion: reduce) {
    .ws-faq-question,
    .ws-faq-chevron,
    .ws-faq-answer,
    .ws-faq-category,
    .ws-faq-button {
      transition: none;
    }
  }