:root {
      --white: hsl(0, 100%, 100%);
      --purple-100: hsl(275, 100%, 97%);
      --purple-600: hsl(292, 16%, 49%);
      --purple-950: hsl(292, 42%, 14%);
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Work Sans', sans-serif;
      background-color: var(--purple-100);
      background-image: url('./assets/images/background-pattern-desktop.svg');
      background-repeat: no-repeat;
      background-size: 100%;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 1.5rem;
    }
    
    .faq-container {
      background-color: var(--white);
      max-width: 600px;
      border-radius: 1rem;
      padding: 2rem;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
    
    .faq-header {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      margin-bottom: 1.5rem;
    }
    
    .faq-header h1 {
      font-size: 3rem;
      color: var(--purple-950);
    }
    
    .faq-item {
      padding: 1.5rem 0;
      border-bottom: 1px solid var(--purple-100);
    }
    
    .faq-item:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }
    
    .faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      cursor: pointer;
    }
    
    .faq-question h2 {
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--purple-950);
      transition: color 0.3s ease;
    }
    
    .faq-question:hover h2 {
      color: var(--purple-600);
    }
    
    .faq-answer {
      color: var(--purple-600);
      line-height: 1.5;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, margin-top 0.3s ease;
    }
    
    .faq-item.active .faq-answer {
      max-height: 200px;
      margin-top: 1.5rem;
    }
    
    .attribution {
      font-size: 11px;
      text-align: center;
      margin-top: 2rem;
    }
    
    .attribution a {
      color: hsl(228, 45%, 44%);
    }
    
    @media (max-width: 768px) {
      body {
        background-image: url('./assets/images/background-pattern-mobile.svg');
      }
      
      .faq-container {
        width: 100%;
      }
      
      .faq-header h1 {
        font-size: 2rem;
      }
      
      .faq-question h2 {
        font-size: 1rem;
      }
    }