/* Общий фон страницы */
body {
  background-color: #f5f7fa;
  font-family: 'Poppins', sans-serif;
}

/* Шапка */
.header {
  background: #ffffff;
  border-radius: 50px;
  padding: 10px 30px;
  margin: 20px auto;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Логотип */
.header .logo img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

/* Название проекта */
.header .logo span {
  font-weight: bold;
  font-size: 22px;
}

/* Навигация */
.header nav a {
  text-decoration: none;
  margin: 0 15px;
  color: #333;
  font-weight: 500;
}

.header nav a:hover {
  color: #4a90e2;
}

/* Иконки справа */
.header .header-icons {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Баннер */
.banner {
  background: url('https://твоя-ссылка-на-фон.jpg') center/cover no-repeat;
  background-color: #a76524;
  border-radius: 40px;
  margin: 30px auto;
  padding: 80px 20px;
  text-align: center;
  max-width: 1200px;
  position: relative;
  overflow: hidden;
}

/* Затемнение */
.banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(167, 101, 36, 0.8);
  z-index: 1;
}

/* Контент баннера */
.banner h1,
.banner p,
.banner a {
  position: relative;
  z-index: 2;
}

.banner h1 {
  font-size: 48px;
  color: #fff;
  font-weight: bold;
}

.banner p {
  font-size: 22px;
  margin-top: 10px;
  color: #eee;
}

/* Кнопка */
.banner a {
  margin-top: 30px;
  display: inline-block;
  background-color: #f5b041;
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 18px;
  transition: background-color 0.3s;
}

.banner a:hover {
  background-color: #e5a234;
}
