.top-menu {
    width: 100%;
    background-color: rgb(61, 93, 140);
  
  }

 .top-menu .block-menu {
  max-width: 1200px;
  min-height: 70px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: nowrap;
  font-family: 'Montserrat', Arial, sans-serif;
}

  .block-menu-logo {
    flex: 0 0 auto;
  }

  .block-menu-logo a {
    display: inline-block;
  }

  .block-menu-logo img {
    display: block;
    max-width: 100%;
    height: auto;
  }

  .block-menu-a {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  justify-content: center;
}

 .block-menu-a ul {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0!important;
  padding: 0;
  list-style: none;
  flex-wrap: nowrap;
}

  .block-menu-a ul li {
    margin: 0;
    padding: 0;
  }

  .block-menu-a ul li a {
    font-size: 16px;
    line-height: 1.3;
    text-transform: uppercase;
    color: #ffffff!important;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.3s ease;
  }

  .block-menu-a ul li a:hover,
  .block-menu-a ul li a:focus {
    opacity: 0.8;
  }

.block-menu-contact {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

  .block-menu-contact a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff!important;
    transition: opacity 0.3s ease;
  }

  .block-menu-contact a:hover,
  .block-menu-contact a:focus {
    opacity: 0.8;
  }

  .block-menu-contact .phone-link {
  font-size: 18px;
  line-height: 1.2;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
}

  .block-menu-contact img {
    display: block;
    width: auto;
    height: 36px;
    
  }

  .menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    margin: 5px auto;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .mobile-right {
    display: none;
  }

  .mobile-socials {
    display: none;
  }

  .mobile-phone {
    display: none;
  }


@media (max-width: 1100px) {
  .block-menu-contact .phone-link {
    display: none;
  }
}

  @media (max-width: 768px) {
  .top-menu .block-menu {
    min-height: auto;
    padding: 12px 15px;
    gap: 12px;
    align-items: flex-start;
    flex-wrap: wrap;
  }

    .block-menu-logo {
    flex: 0 1 auto;
    order: 1;
  }

    .block-menu-logo img {
      max-width: 160px;
    }

   .block-menu-a {
    display: none;
    width: 100%;
    order: 4;
    flex: 0 0 100%;
  }

  .block-menu-a.active {
    display: block;
  }

    .block-menu-a ul {
      flex-direction: column;
      align-items: flex-start;
      gap: 0;
      width: 100%;
      margin-top: 10px;
    }

    .block-menu-a ul li {
      width: 100%;
      border-top: 1px solid rgba(255, 255, 255, 0.15);
    }

    .block-menu-a ul li:last-child {
      border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .block-menu-a ul li a {
      display: block;
      width: 100%;
      padding: 14px 0;
      font-size: 15px;
    }

    .block-menu-contact {
      display: none;
    }

    .mobile-right {
    display: flex;
    align-items: center;
    gap: 0px;
    margin-left: auto;
    order: 2;
  }

    .mobile-socials {
      display: flex;
      align-items: center;
      gap: 0px;
    }

    .mobile-socials a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .mobile-socials img {
      display: block;
      width: auto;
      height: 30px;      
    }

    .menu-toggle {
      display: block;
      flex: 0 0 auto;
    }

    .mobile-phone {
    display: none;
    width: 100%;
    order: 3;
    margin-top: 4px;
  }

    .mobile-phone.active {
      display: block;
    }

    .mobile-phone a {
      color: #ffffff!important;
      text-decoration: none;
      font-size: 17px;
      line-height: 1.3;
      font-weight: 600;
      text-transform: uppercase;
      white-space: nowrap;
    }
  }

  @media (max-width: 480px) {
    .top-menu .block-menu {
      padding: 10px 12px;
    }

    .block-menu-logo img {
      max-width: 105px;
      margin-top: 8px;
    }

    .mobile-socials img {
      height: 26px;      
    }

    .menu-toggle {
      width: 38px;
      height: 38px;
    }

    .menu-toggle span {
      width: 24px;
    }

    .mobile-phone a {
      font-size: 15px;
    }
  }




  .block-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  background-color: #000000;
  color: #ffffff!important;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 20px;
  gap: 20px;
}

.footer-col {
  flex: 1 1 auto;
  min-width: 200px;
}

/* Ссылки */
.block-footer a {
  color: #ffffff!important;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.block-footer a:hover {
  opacity: 0.7;
}

/* Меню */
.footer-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;

  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.footer-menu li {
  margin: 0;
}

/* Правовая инфа */
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 14px;
}

/* Платежи */
.footer-payments {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-payments img {
  height: 30px;
  width: auto;
}

/* ===== Планшеты ===== */
@media (max-width: 992px) {
  .block-footer {
    justify-content: center;
    text-align: center;
  }

  .footer-menu ul {
    justify-content: center;
  }

  .footer-payments {
    justify-content: center;
  }
}

/* ===== Мобильные ===== */
@media (max-width: 600px) {
  .block-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-col {
    width: 100%;
  }

  .footer-menu ul {
    flex-direction: column;
    gap: 8px;
  }

  .footer-legal {
    align-items: center;
  }
}



.contact-map-section {
  padding: 60px 0 0;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* Заголовок */
.page-title {
  text-align: center;
  font-size: 48px;
  margin-bottom: 40px;
  font-weight: 700;
}

/* РАВНЫЕ КОЛОНКИ */
.contact-map-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
}

/* ===== ЛЕВАЯ ЧАСТЬ (карта) ===== */
.contact-map-box {
  height: 500px;
}

.contact-map-box iframe {
  width: 100%;
  height: 100%;
  border: none;

  /* тёмная карта */
  filter: grayscale(1) invert(0.9) brightness(0.85);
}

/* ===== ПРАВАЯ ЧАСТЬ (улучшенная карточка) ===== */
.contact-info-box {
  display: flex;
  align-items: center;
  justify-content: center;

  background: #f9f9f9;
  border-left: 1px solid #e6e6e6; /* разделение с картой */
}

/* Карточка внутри */
.contact-info-inner {
  max-width: 480px;
  width: 100%;

  padding: 45px 40px;

  background: #ffffff;
  border: 1px solid #e5e5e5;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);

  position: relative;
}

/* Небольшой акцент сверху */
.contact-info-inner::before {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: #3d5d8c; /* цвет из твоего header */
  margin-bottom: 20px;
}

/* ===== ТЕКСТ ===== */
.contact-info-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 8px;
}

.contact-info-title {
  font-size: 34px;
  margin-bottom: 25px;
  font-weight: 700;
  color: #111;
}

/* список */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-caption {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: #999;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.contact-info-item a,
.contact-info-item p {
  font-size: 17px;
  line-height: 1.5;
  color: #111;
  margin: 0;
  text-decoration: none;
}

.contact-info-item a {
  color: #111!important;
}

.contact-info-item a:hover {
  color: #3d5d8c;
}

/* юр блок */
.contact-legal p {
  font-size: 15px;
  color: #555;
}

/* соцсети */
.contact-socials {
  margin-top: 25px;
  display: flex;
  gap: 10px;
}

.contact-socials a {
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.contact-socials a:hover {
  background: #3d5d8c;
  border-color: #3d5d8c;
}

.contact-socials img {
  height: 20px;
  filter: grayscale(1);
}

.contact-socials a:hover img {
  filter: brightness(0) invert(1);
}


@media (max-width: 900px) {
  .contact-map-section {
    padding: 40px 0 0;
  }

  .page-title {
    text-align: center;
    font-size: 34px;
    line-height: 1.15;
    margin: 0 0 24px;
    padding: 0 15px;
  }

  .contact-map-layout {
    grid-template-columns: 1fr;
  }

  .contact-map-box {
    height: 300px;
  }

  .contact-info-box {
    border-left: none;
    border-top: 1px solid #e6e6e6;
    padding: 0;
    background: #f7f7f7;
  }

  .contact-info-inner {
    max-width: 100%;
    padding: 28px 22px;
    border: none;
    box-shadow: none;
    background: #ffffff;
  }

  .contact-info-title {
    font-size: 28px;
    line-height: 1.15;
    margin-bottom: 20px;
  }

  .contact-info-list {
    gap: 16px;
  }

  .contact-info-item a,
  .contact-info-item p {
    font-size: 16px;
    line-height: 1.5;
  }

  .contact-legal p {
    font-size: 14px;
    line-height: 1.6;
  }

  .contact-socials {
    margin-top: 22px;
    gap: 12px;
  }

  .contact-socials a {
    width: 42px;
    height: 42px;
  }

  .contact-socials img {
    height: 18px;
  }
}

@media (max-width: 600px) {
  .contact-map-section {
    padding: 32px 0 0;
  }

  .page-title {
    font-size: 28px;
    margin-bottom: 18px;
  }

  .contact-map-box {
    height: 240px;
  }

  .contact-info-box {
    background: #ffffff;
  }

  .contact-info-inner {
    padding: 22px 16px;
  }

  .contact-info-inner::before {
    width: 42px;
    margin-bottom: 16px;
  }

  .contact-info-label {
    font-size: 10px;
    letter-spacing: 0.14em;
    margin-bottom: 6px;
  }

  .contact-info-title {
    font-size: 24px;
    margin-bottom: 18px;
  }

  .contact-info-caption {
    font-size: 10px;
    margin-bottom: 4px;
  }

  .contact-info-item a,
  .contact-info-item p {
    font-size: 15px;
  }

  .contact-legal p {
    font-size: 13px;
  }

  .contact-socials {
    margin-top: 18px;
  }

  .contact-socials a {
    width: 40px;
    height: 40px;
  }
}



.documents-section {
  padding: 40px 20px;
  background: #ffffff;
  font-family: 'Montserrat', Arial, sans-serif;
}

.documents-container {
  max-width: 1200px;
  margin: 0 auto;
}

.documents-label {
  margin: 0 0 12px;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7b7b7b;
  text-align: center;
}

.documents-title {
  margin: 0 0 42px;
  font-size: 46px;
  line-height: 1.05;
  font-weight: 700;
  color: #111111;
  text-align: center;
}

.documents-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.document-card {
  background: #ffffff;
  border: 1px solid #e7e7e7;
  padding: 28px 24px;
  min-height: 100%;
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.document-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
  border-color: #d8d8d8;
}

.document-card-title {
  margin: 0 0 22px;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 700;
  color: #111111;
}

.document-links {
  list-style: none;
  margin: 0 0 20px 0;
  padding: 0!important;
}

.document-links li + li {
  margin-top: 12px;
}

.document-links li ul {
  list-style: none;
  margin: 0 0 0 20px;
  padding: 0!important;
}

.document-links a {
  display: inline-block;
  font-size: 14px;
  line-height: 1.25;
  color: #838383!important;
  text-decoration: underline!important;
  border-bottom: 0;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.document-links a:hover {
  color: #3d5d8c;
  border-color: #3d5d8c;
  border-bottom: none!important;
  text-decoration: none!important;
}

@media (max-width: 992px) {
  .documents-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .documents-title {
    font-size: 38px;
  }
}

@media (max-width: 640px) {
  .documents-section {
    padding: 50px 15px;
  }

  .documents-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .documents-title {
    font-size: 30px;
    margin-bottom: 28px;
  }

  .document-card {
    padding: 22px 18px;
  }

  .document-card-title {
    font-size: 21px;
    margin-bottom: 18px;
  }

  .document-links a {
    font-size: 15px;
  }
}


.page-donation {
  padding: 40px 0 200px 0;
}



/* ===== КНОПКА ПОДДЕРЖАТЬ ===== */
.btn-support {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff!important;
  background-color: #28a745;
  border-radius: 4px;
  transition: background-color 0.2s ease;
  white-space: nowrap;
  flex: 0 0 auto;
}

.btn-support:hover {
  background-color: #28a745;
}

/* расстояние в десктопе */
.block-menu-contact .btn-support {
  margin: 0 10px;
}

/* мобильная версия */
.mobile-btn {
  display: none;
}

/* ===== АДАПТИВ ===== */
@media (max-width: 768px) {
  .block-menu-contact .btn-support {
    display: none;
  }

  .mobile-btn {
    display: inline-flex;
    padding: 8px 12px;
    font-size: 12px;
    color: #ffffff!important;
  }
}