{/* Общие настройки для шрифтов */
body {
  font-family: 'Nunito', sans-serif;
  background-color: #ffffff;
  color: #333;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
}

p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Кнопки */
.btn {
  padding: 16px 36px;
  background-color: #0088cc;
  color: white;
  font-weight: 600;
  font-size: 16px;
  border-radius: 10px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #0073b1;
}

/* Общие отступы и закругления */
section {
  padding: 60px 20px;
}

input, select, textarea {
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin-bottom: 20px;
}

input[type="submit"] {
  background-color: #0088cc;
  color: white;
  font-weight: 600;
  border-radius: 8px;
  padding: 12px 30px;
  border: none;
  cursor: pointer;
}

input[type="submit"]:hover {
  background-color: #0073b1;
}
