 .filter {
    text-align: center;
    margin-bottom: 30px;
  }
  .filter button {
    background: #fff;
    border: 2px solid #3498db;
    border-radius: 25px;
    padding: 10px 25px;
    margin: 0 7px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    color: #3498db;
  }
  .filter button.active, .filter button:hover {
    background: #3498db;
    color: #fff;
  }
  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
  }
  .card {
    background: linear-gradient(135deg, #ffffff, #eaf2f8);
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    padding: 25px 20px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }
  .card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 35px rgba(0,0,0,0.18);
  }
  .card .icon {
    font-size: 40px;
    margin-bottom: 15px;
    display: block;
    color: #3498db;
    text-align: center;
  }
  .card h3 {
    text-align: center;
    margin: 0 0 15px 0;
    font-weight: 600;
    color: #2c3e50;
  }
  .card ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .card ul li {
    padding: 8px 0;
    border-bottom: 1px solid #dce6f1;
    display: flex;
    justify-content: space-between;
    font-weight: 500;
  }
  .card ul li:last-child {
    border-bottom: none;
  }
  .card-link {
    text-decoration: none;
    color: inherit;
    display: block;
  }
  @media(max-width: 600px){
    .grid {
      grid-template-columns: 1fr;
    }
  }
  .icon img {
    width: 40px;   /* ширина иконки */
    height: auto;  /* высота автоматически */
    display: block;
    margin: 0 auto 10px; /* центрирование + отступ снизу */
  }
  

  /* Простая и аккуратная информация */
.simple-section {
  background: #f9f9f9;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  margin: 30px auto;
  max-width: 1400px;
}

.info-container {
  text-align: left;
}

.info-header {
  margin-bottom: 20px;
}

.info-title {
  font-size: 24px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 8px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.info-description {
  font-size: 16px;
  color: #7f8c8d;
  margin-bottom: 20px;
}

.info-details h3, .info-cta h3 {
  font-size: 20px;
  font-weight: 700;
  color: #34495e;
  margin-bottom: 10px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.info-list {
  list-style: disc;
  padding-left: 20px;
  margin: 10px 0 20px 0;
}

.info-list li {
  font-size: 16px;
  color: #2c3e50;
  margin-bottom: 10px;
}

.info-list strong {
  color: #3498db;
}

.divider {
  border: 0;
  height: 1px;
  background: #e0e0e0;
  margin: 30px 0;
}

.contact-options {
  list-style: none;
  padding: 0;
}

.contact-options li {
  font-size: 16px;
  color: #34495e;
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.contact-options li i {
  color: #3498db;
}

.contact-options li a {
  text-decoration: none;
  color: #3498db;
  font-weight: 600;
}

.contact-options li a:hover {
  text-decoration: underline;
}

.info-footer p {
  font-size: 16px;
  color: #2c3e50;
  margin-bottom: 10px;
}

.info-footer i {
  color: #e74c3c;
  margin-right: 6px;
}

.info-footer strong {
  color: #34495e;
}
/* Добавленный блок для уведомления */
.info-notice {
  background-color: #fff4e6;
  border-left: 5px solid #f39c12; /* Оранжевый акцент */
  padding: 15px 20px;
  margin-bottom: 20px;
  border-radius: 5px;
}

.info-notice p {
  font-size: 16px;
  color: #e67e22; /* Оранжевый текст */
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-notice i {
  font-size: 20px;
}

/* Контейнер для значков */
.contact-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px; /* Расстояние между значками */
  margin-top: 20px;
}

.contact-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.contact-option a {
  font-size: 40px; /* Размер значков */
  color: #3498db; /* Синий основной цвет */
  transition: color 0.3s, transform 0.3s;
}

.contact-option p {
  font-size: 14px;
  font-weight: 500;
  color: #2c3e50;
  margin: 0;
}

.contact-option a:hover {
  color: #2ecc71; /* Зеленый при наведении */
  transform: scale(1.2); /* Легкое увеличение при наведении */
}



.important-note {
  background-color: #f9f9f9; /* Светлый фон */
  border-left: 4px solid #007bff; /* Акцентная синяя полоса */
  padding: 20px;
  margin: 20px 0;
  font-family: 'Roboto', sans-serif;
  border-radius: 8px; /* Сглаженные углы */
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1); /* Лёгкая тень */
}

.important-note p {
  line-height: 1.6;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  color: #333;
}

.important-note .highlight {
  background-color:#ffffff;
  padding: 15px;
  border: 1px solid #ff5733;
  border-radius: 5px;
  margin: 15px 0;
}

.important-note .highlight strong {
  color: #ff5733;
}

.important-note i {
  font-size: 1.2rem;
}