/* ====== Base Reset ====== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html, body {
    height: 100%;
    font-family: 'Poppins', Arial, sans-serif;
    background: linear-gradient(to right, #00264d, #0052cc);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
  }
  
  /* ====== Main Container ====== */
  .container {
    width: 100%;
    max-width: 900px; /* трохи більше, щоб FAQ не тиснув */
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    text-align: center;
    animation: fadeIn 1s ease-in-out;
    overflow-x: hidden;
  }
  
  /* ====== Заголовки ====== */
  h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffd700;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
  }
  
  /* ====== Input ====== */
  .location-input {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    gap: 10px;
    flex-wrap: wrap;
  }
  
  .location-input input {
    padding: 12px 15px;
    font-size: 1rem;
    border: none;
    border-radius: 30px;
    outline: none;
    width: 100%;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    box-shadow: 0 4px 15px rgba(80, 59, 59, 0.2);
    transition: all 0.3s ease;
  }
  
  .location-input input:focus {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  }
  
  /* ====== FAQ ====== */
  .faq-container {
    width: 100%;
    text-align: left;
  }
  
  .faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .faq-question {
    background: none;
    border: none;
    color: #ffd700;
    font-size: 1.2rem;
    font-weight: bold;
    width: 100%;
    text-align: left;
    padding: 15px 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
  }
  
  .faq-question:hover {
    color: #ffea00;
  }
  
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 10px;
  }
  
  .faq-answer p {
    margin: 10px 0;
    font-size: 1rem;
    line-height: 1.5;
  }
  
  /* ====== Адаптив ====== */
  @media (max-width: 768px) {
    h1 {
      font-size: 2rem;
    }
  
    .location-input input {
      max-width: 100%;
    }
  
    .faq-question {
      font-size: 1.1rem;
      padding: 12px 8px;
    }
  
    .faq-answer p {
      font-size: 0.95rem;
    }
  }
  
  @media (max-width: 480px) {
    h1 {
      font-size: 1.8rem;
    }
  
    .faq-question {
      font-size: 1rem;
      padding: 10px 5px;
    }
  
    .faq-answer p {
      font-size: 0.9rem;
    }
  }
  
  /* ====== Анімація ====== */
  @keyframes fadeIn {
    from {opacity: 0; transform: translateY(20px);}
    to {opacity: 1; transform: translateY(0);}
  }
  