  .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 10px 0;
    user-select: none;
  }

  .faq-toggle {
    font-weight: bold;
    font-size: 24px;
    line-height: 1;
    margin-left: 10px;
    transition: transform 0.3s;
  }

  .faq-answer {
    display: none;
    padding: 5px 0 10px;
    animation: fadeIn 0.3s ease-in-out;
  }

  @keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
  }

  /*** Модальное окно ****/
  .modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
  }

  .modal.show {
    display: flex;
  }

  .modal-content {
    background: #111;
    color: white;
    padding: 30px;
    max-width: 420px;
    width: 90%;
    border-radius: 16px;
    position: relative;
    animation: fadeIn 0.3s ease-in-out;
    font-family: 'Poppins', sans-serif;
  }

  .close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 20px;
    cursor: pointer;
    color: #fff;
  }

  .modal-content h2 {
    margin-top: 0;
    font-size: 24px;
    margin-bottom: 20px;
  }

  .modal-content input,
  .modal-content button {
    width: 100%;
    margin: 10px 0;
    padding: 12px;
    font-size: 16px;
    border-radius: 8px;
    border: none;
  }

  .modal-content input {
    background: #222;
    color: white;
  }

  .modal-content button {
    background: #3b82f6;
    color: white;
    font-weight: bold;
    cursor: pointer;
  }

  /* Messenger блок */
  .contact-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .contact-field label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    margin-bottom: 5px;
    font-size: 15px;
  }

  .contact-field input {
    width: 100%;
    padding: 10px;
    font-size: 15px;
    background: #222;
    color: white;
    border-radius: 8px;
    border: none;
  }

  .contact-field svg {
    width: 24px;
    height: 24px;
  }

  .error-msg {
    color: #ff4d4f;
    font-size: 14px;
    margin-top: 5px;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
  }

  /* Адаптивность */
  @media (max-width: 480px) {
    .modal-content {
      padding: 20px;
    }

    .contact-options {
      flex-direction: column;
    }

    .modal-content h2 {
      font-size: 20px;
    }
  }
  /****************/
  .grid_2-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 12px;
  align-items: start;
}

.image_cover {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 8px; /* опционально — для красоты */
}
