/* Сброс стилей */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Общие стили */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Шапка */
.header {
  background: #282c34;
  border-bottom: 1px solid #eee;
}

.header__inner {
  display: flex;
  align-items: center; 
  justify-content: space-between; 
  padding: 10px 20px;
  color: #fff;
}

.logo {
  font-size: 20px;
  font-weight: bold;
}

.menu ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.menu a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
}

.menu a:hover {
  text-decoration: underline;
}

/* Герой */
.hero {
  background: #f0f0f0;
  text-align: center;
  padding: 60px 20px;
}

.hero h2 {
  font-size: 2em;
  margin-bottom: 10px;
}

.hero p {
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #282c34;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

.btn:hover {
  background: #444;
}

/* О нас */
.about {
  padding: 40px 20px;
  text-align: center;
}

/* Подвал */
.footer {
  background: #282c34;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
}

