/* ==========================================================================
   Компонент: Подвал, нижняя часть (.footer)
   Содержит юридическую информацию, контакты и ссылки на документы.
   ========================================================================== */

.footer {
    width: 100%;
    background-color: #249AF3;
    padding: 60px 0;
    display: flex;
    justify-content: center;
}

.footer__inner {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 0 20px;
}

/* Колонка в нижней части */
.footer__column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Заголовок колонки */
.footer__title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

/* Текст и ссылки в колонке */
.footer__text {
    font-size: 16px;
    font-weight: 400;
    color: #eaf6ff;
    line-height: 1.55;
    margin: 0;
}

/* Ссылки (email, документы) */
.footer__link {
    color: #eaf6ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__link:hover {
    color: #ffffff;
    text-decoration: underline;
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 0;
  }

  .footer__inner {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .footer__column {
    align-items: center;
  }

  .footer__title {
    font-size: 20px;
  }

  .footer__text {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .footer__inner {
    gap: 24px;
  }

  .footer__title {
    font-size: 18px;
  }

  .footer__text {
    font-size: 13px;
  }
}