/* ---------- Общие настройки ---------- */
body {
  font-family: "Inter", "Segoe UI", sans-serif;
  margin: 0;
  background-color: #f8fafd;
  color: #222;
  line-height: 1.6;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px;
}

/* ---------- Заголовки ---------- */
h1, h2, h3 {
  color: #024180;
  font-weight: 700;
}

h1 {
  font-size: 2.2rem;
  margin-top: 30px;
  line-height: 1.3;
  text-align: center;
}

h2 {
  font-size: 1.6rem;
  margin-top: 40px;
  text-align: center;
}

.highlight {
  color: #e11b22; /* красная буква В */
}

/* ---------- Текст и параграфы ---------- */
p {
  margin: 10px 0;
  text-align: center;
}

ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

ul li {
  background: #fff;
  border-left: 4px solid #024180;
  padding: 12px 16px;
  margin: 10px 0;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* ---------- Кнопки ---------- */
button, .form-submit-btn {
  background-color: #024180;
  color: white;
  border: none;
  padding: 12px 25px;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

button:hover, .form-submit-btn:hover {
  background-color: #032e63;
}

/* ---------- Форма обратной связи ---------- */
.feedback-form {
  background-color: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 15px;
}

label {
  display: block;
  margin-bottom: 5px;
  color: #024180;
  font-weight: 600;
}

input, textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccd5e0;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  transition: border 0.2s ease;
}

input:focus, textarea:focus {
  border-color: #024180;
}

/* ---------- Контакты ---------- */
.contacts {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.contacts a {
  text-decoration: none;
  background-color: #024180;
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.contacts a:hover {
  background-color: #032e63;
}

/* ---------- Плавающие иконки ---------- */
.social-floating {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-fab {
  width: 48px;
  height: 48px;
  background-color: #024180;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
  transition: transform 0.2s ease, background 0.2s ease;
}

.social-fab:hover {
  background-color: #e11b22;
  transform: scale(1.1);
}

/* ---------- Ссылки внутри текста ---------- */
a {
  color: #024180;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ---------- Примечания ---------- */
.note {
  text-align: center;
  color: #555;
  font-size: 0.95rem;
}
