#special {
	display: none;
}
.logon {
	margin-right: 15px;
	  }
.logon::before {
		  background-image: url("../resources/gw/personal.png") !important
}
  .about-astrec {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.about-astrec h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
}

.about-photo {
  height: 250px;
  background-color: #f0f0f0;
  border-radius: 16px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #888;
}

/* Сетка 2x2 с нормальным отступом между карточками */
.about-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.about-card {
  width: calc(50% - 24px);
  min-width: 280px;
  max-width: 480px;
  background: linear-gradient(135deg, #f0f9ff, #dbeeff);
  border: 1px solid #c2e0f7;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 122, 204, 0.08);
  box-sizing: border-box;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 122, 204, 0.15);
}

.about-card h3 {
  font-size: 32px;
  font-weight: 700;
  color: #007acc;
  margin: 0 0 10px 0;
}

.about-card p {
  color: #004c7d;
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
}
.arec-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.arec-link-card {
  background: #f2f7ff;
  border: 1px solid #cdddf6;
  border-radius: 12px;
  padding: 20px;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.arec-link-card:hover {
  background: #e0edff;
  box-shadow: 0 4px 10px rgba(0, 90, 180, 0.1);
}

.arec-link-card p {
  margin: 0;
  font-weight: 600;
  font-size: 16px;
  color: #003366;
}

.arec-link-card img {
  width: 20px;
  height: 20px;
}

/* Удалить цветовые модификаторы */
.about-card.blue,
.about-card.green,
.about-card.yellow,
.about-card.purple {
  background: unset;
}

.nav-mob_item-link.submenu {
    font-family: "Segoe UI", Roboto, sans-serif; /* Более современный шрифт */
    font-size: 18px; /* Чуть крупнее */
    font-weight: 600;
    color: #005ea5; /* Синеватый оттенок */
    padding: 12px 20px;
    display: block;
    background: linear-gradient(to right, #e0f3ff, #f5fcff); /* Светло-синий фон */
    border-radius: 10px;
    margin: 10px 15px;
    transition: background 0.3s ease, color 0.3s ease;
}

.nav-mob_item-link.submenu:hover {
    background: #cfe9ff;
    color: #003366;
}
/* Текст карточки */
.arec-comp-info-left-cards-item-text {
    font-size: 16px;
    font-weight: 600;
    color: #003a63;
    margin: 0;
    flex-grow: 1;
}

/* Иконка "ещё" */
.arec-comp-info-left-cards-item-more-block img {
    width: 20px;
    height: 20px;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.arec-comp-info-left-cards-item:hover .arec-comp-info-left-cards-item-more-block img {
    opacity: 1;
}
.nav-mob_item-link {
  font-family: 'Segoe UI', 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #1b2a4e;
  padding: 12px 16px;
  display: block;
  border-radius: 8px;
  transition: background 0.3s, color 0.3s;
}
.nav-mob {
  background: linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
  padding: 10px 0;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Основные пункты меню */
.nav-mob_item {
  border-bottom: 1px solid #e0e0e0;
  padding: 12px 16px;
  transition: background 0.2s;
}

.nav-mob_item:last-child {
  border-bottom: none;
}

.nav-mob_item:hover {
  background: #f0f0f0;
}
 * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: Arial, sans-serif;
      background: #f4f4f4;
      padding: 30px;
    }

    .carousel-container {
      width: 100%;
      max-width: 1200px;
      margin: auto;
      overflow: hidden;
      position: relative;
      border-radius: 20px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      background-color: #fff;
    }

    .carousel-slide {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }

    .carousel-item {
      display: flex;
      min-width: 100%;
      padding: 20px;
      align-items: center;
      gap: 30px;
    }

    .carousel-item img {
      width: 45%;
      height: auto;
      border-radius: 12px;
      object-fit: cover;
    }

    .carousel-content {
      width: 55%;
    }

    .carousel-content h2 {
      font-size: 28px;
      color: #222;
      margin-bottom: 10px;
    }

    .carousel-content p {
      font-size: 18px;
      color: #555;
      line-height: 1.5;
    }

    .carousel-buttons {
      position: absolute;
      top: 50%;
      width: 100%;
      display: flex;
      justify-content: space-between;
      transform: translateY(-50%);
    }

    .carousel-buttons button {
      background-color: rgba(0, 0, 0, 0.4);
      border: none;
      color: white;
      font-size: 30px;
      padding: 10px 20px;
      cursor: pointer;
      border-radius: 10px;
      transition: background 0.3s;
    }

    .carousel-buttons button:hover {
      background-color: rgba(0, 0, 0, 0.7);
    }
/* Ссылки */
.nav-mob_item-link {
  color: #333;
  font-weight: 500;
  text-decoration: none;
  font-size: 16px;
  display: block;
}

/* Подменю */
.nav-mob-submenu {
  background: #f9f9f9;
  border-radius: 8px;
  margin-top: 8px;
  padding: 12px;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
}

/* Элементы подменю */
.nav-mob-submenu_item {
  padding: 8px 0;
  border-bottom: 1px dashed #ccc;
}

.nav-mob-submenu_item:last-child {
  border-bottom: none;
}

.nav-mob-submenu_item a {
  font-size: 15px;
  color: #444;
  text-decoration: none;
}

.nav-mob-submenu_item a:hover {
  color: #0056b3;
}

/* Названия подменю (заголовок) */
.nav-mob-submenu_title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #222;
}

/* Кнопка закрытия */
.nav-mob_close {
  background: none;
  border: none;
  font-size: 24px;
  color: #999;
  float: right;
}

.nav-mob {
  background: linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
  padding: 12px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  font-family: 'Segoe UI', 'Roboto', sans-serif;
}

/* Каждый пункт меню */
.nav-mob_item {http://127.0.0.1:5500/abonentam.html
  padding: 10px 0;
  border-bottom: 1px solid #e5e5e5;
}

.nav-mob_item:last-child {
  border-bottom: none;
}

/* Ссылки пунктов меню */
.nav-mob_item-link {
  font-size: 16px;
  font-weight: 500;
  color: #1b2a4e;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  border-radius: 8px;
  transition: background 0.3s, color 0.3s;
}

.nav-mob_item-link:hover {
  background-color: #f0f0f0;
  color: #0056b3;
}

/* Подменю */
.nav-mob-submenu {
  background: #f9f9f9;
  margin: 8px 0 0 10px;
  padding: 10px 16px;
  border-left: 2px solid #ddd;
  border-radius: 8px;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
}

/* Пункты подменю */
.nav-mob-submenu_item {
  padding: 6px 0;
  border-bottom: 1px dashed #ccc;
}

.nav-mob-submenu_item:last-child {
  border-bottom: none;
}

.nav-mob-submenu_item a {
  font-size: 15px;
  color: #444;
  text-decoration: none;
}

.nav-mob-submenu_item a:hover {
  color: #0056b3;
}

/* Заголовок подменю */
.nav-mob-submenu_title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #222;
}

/* Кнопка закрытия */
.nav-mob_close {
  background: none;
  border: none;
  font-size: 24px;
  color: #999;
  float: right;
  cursor: pointer;
}

<style>
.modern-connect {
  background: #f7f9fb;
  padding: 60px 0;
}
.podkluchenie-block-title {
  font-size: 28px;
  text-align: center;
  margin-bottom: 40px;
  color: #003366;
}

.podkluchenie-block-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.podkluchenie-card {
  background-color: #f9fbff;
  border: 1px solid #d0e2f2;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0, 51, 102, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  position: relative;
}

.podkluchenie-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 51, 102, 0.12);
}

.card-icon {
  margin-bottom: 20px;
  height: 48px;
}

.card-icon img {
  height: 100%;
}

.card-text h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #003366;
}

.card-text p {
  font-size: 15px;
  color: #444;
  line-height: 1.5;
  flex-grow: 1;
}

.card-btn {
  margin-top: 20px;
  display: inline-block;
  background-color: #0066cc;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.card-btn:hover {
  background-color: #004e99;
}

.card-text h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #2c3e50;
}

.card-text p {
  font-size: 16px;
  color: #555;
}

.card-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #3498db, #2e86de);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  transition: background 0.3s ease;
  text-align: center;
}

.card-btn:hover {
  background: linear-gradient(135deg, #2e86de, #3498db);
}


.header-container-2025 {
	margin: 0 auto;
    display: flex;
    gap: 15px;
}
