/* ======= Общие стили ======= */
body {
  font-family: "Segoe UI", Arial, sans-serif;
  margin: 0;
  background: linear-gradient(90deg, #e41e26 0%, #ffffff 50%, #1c52a4 100%);
  color: #222;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ======= Шапка ======= */
.main-header {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 3px solid #c00;
  text-align: center;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 10;
}

.gerb-small {
  width: 60px;
  vertical-align: middle;
}

.site-title {
  display: inline-block;
  margin-left: 10px;
  font-size: 30px;
  color: #b00;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ======= Навигация ======= */
.main-nav {
  margin-top: 10px;
}

.main-nav a {
  margin: 0 12px;
  text-decoration: none;
  color: #0044aa;
  font-weight: 600;
  transition: color 0.2s;
}

.main-nav a:hover {
  color: #e41e26;
  text-decoration: underline;
}

/* ======= Главный блок ======= */
.hero {
  text-align: center;
  padding: 50px 0 40px;
  color: #002b80;
}

.hero-gerb {
  width: 100px;
  margin-bottom: 15px;
}

.hero-text h2 {
  font-size: 34px;
  color: #002b80;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 18px;
  color: #333;
}

/* ======= Основные секции ======= */
.info-section {
  max-width: 900px;
  margin: 30px auto;
  background: #fff;
  padding: 25px 35px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.08);
}

.info-section h2 {
  border-left: 5px solid #d00;
  padding-left: 12px;
  color: #002b80;
  margin-bottom: 15px;
  font-weight: 600;
}

/* ======= Карточки ======= */
.card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 20px;
  margin-bottom: 20px;
  background: #fdfdfd;
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
}

/* ======= Кнопки ======= */
.btn-custom {
  background: #002b80;
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s;
}

.btn-custom:hover {
  background: #0044cc;
  color: #fff;
}

/* ======= Ссылки "Подробнее" ======= */
.more-link {
  display: block;
  text-align: right;
  margin-top: 10px;
  color: #0044aa;
  font-weight: 500;
  transition: color 0.2s;
}

.more-link:hover {
  color: #e41e26;
}

/* ======= Футер ======= */
.site-footer {
  margin-top: auto;
  text-align: center;
  background: rgba(255, 255, 255, 0.95);
  padding: 15px 0;
  font-size: 14px;
  border-top: 3px solid #c00;
  color: #444;
}
