/* ============================================
   FAQ SECTION
   ============================================ */

   :root {
    --bg: #fff;
    --muted: #6b7280;
    --accent: #0ea5a4;
    --panel: #f8fafc;
    --border: #e6eef2;
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  }
  
  .faq-section {
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    color: white;
    padding: 3rem 0.75rem;
  }
  
  .faq-section .container {
    max-width: 920px;
    margin: 0 auto;
  }
  
  .faq-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
    color: white;
  }
  
  .faq-section .lead {
    color: white;
    margin-bottom: 1.25rem;
  }
  
  /* FAQ List Items */
  .faq-list details {
    background: linear-gradient(180deg, rgba(250, 250, 252, 1), var(--panel));
    border: 1px solid var(--border);
    border-radius: 0.625rem;
    margin-bottom: 0.75rem;
    padding: 0.75rem 1rem;
    transition: box-shadow 0.18s ease, transform 0.12s ease;
    cursor: pointer;
  }
  
  .faq-list details[open] {
    box-shadow: 0 0.375rem 1.25rem rgba(14, 165, 164, 0.08);
    transform: translateY(-2px);
  }
  
  .faq-list summary {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 0.9375rem;
    color: #6d6d6d;
  }
  
  /* Remove default triangle */
  .faq-list summary::-webkit-details-marker {
    display: none;
  }
  
  .faq-list summary::before {
    content: "+";
    display: inline-grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 0.375rem;
    background: #f1f5f9;
    color: var(--accent);
    font-weight: 700;
    margin-right: 0.375rem;
    transition: transform 0.12s ease, background 0.12s ease;
  }
  
  .faq-list details[open] summary::before {
    content: "−";
    background: #6574da;
    color: #fff;
    transform: rotate(0deg);
  }
  
  .answer {
    margin-top: 0.625rem;
    color: #344054;
    font-size: 0.875rem;
    line-height: 1.5;
    padding-left: 0.375rem;
  }
  
  /* ============================================
     FOOTER
     ============================================ */
  
  .footer {
    border-top: 1px solid;
    color: white;
    padding: 2.5rem 0 1.25rem;
    margin-top: 3.125rem;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 1.875rem;
  }
  
  .footer-section h3 {
    color: white;
    margin-bottom: 1.25rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-links li {
    margin-bottom: 0.625rem;
  }
  
  .footer-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
  }
  
  .footer-links a:hover {
    color: white;
    border: 1px solid;
    padding: 0.25rem 0.9375rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
  }
  
  .footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1.25rem;
    text-align: center;
    color: #bdc3c7;
  }
  
  /* ============================================
     MODAL
     ============================================ */
  
  .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
  }
  
  .modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 0.75rem;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.1);
  }
  
  .modal-header {
    background: var(--primary-gradient);
    color: white;
    padding: 1.25rem 1.875rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 500;
  }
  
  .close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: opacity 0.3s ease;
    line-height: 1;
  }
  
  .close:hover {
    opacity: 0.7;
  }
  
  .modal-body {
    padding: 1.875rem;
    max-height: 60vh;
    overflow-y: auto;
  }
  
  .modal-body h3 {
    color: #2c3e50;
    margin: 1.25rem 0 0.625rem 0;
    font-size: 1.2rem;
  }
  
  .modal-body p {
    line-height: 1.6;
    margin-bottom: 0.9375rem;
    color: #555;
  }
  
  .modal-body ul {
    margin: 0.625rem 0 0.9375rem 1.25rem;
    color: #555;
  }
  
  .modal-body li {
    margin-bottom: 0.3125rem;
    line-height: 1.5;
  }
  
  /* ============================================
     BUTTONS
     ============================================ */
  
  .btn-color {
    color: white;
  }
  
  button.modal-submit-btn-color {
    color: white;
    font-size: 1rem;
    background: var(--primary-gradient);
    padding: 0.75rem;
    border-radius: 0.25rem;
    border: 0.5px transparent;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  button.modal-submit-btn-color:hover {
    opacity: 0.9;
    transform: translateY(-1px);
  }
  
  /* ============================================
     RESPONSIVE
     ============================================ */
  
  @media (max-width: 640px) {
    .faq-section {
      padding: 1.75rem 0.875rem;
    }
  
    .faq-section h2 {
      font-size: 1.375rem;
    }
  
    .modal-content {
      width: 95%;
      margin: 10% auto;
    }
  
    .modal-header {
      padding: 1rem 1.25rem;
    }
  
    .modal-body {
      padding: 1.25rem;
    }
  }