* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Helvetica Neue', sans-serif;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

/* Навигация */
nav {
  background-color: #fff;
  padding: 20px 40px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  gap: 30px;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

/* Хедер (обложка) */
.header {
  background: url('furniture.jpg') no-repeat center center/cover;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgb(68, 37, 37);
}
.navbar{
    position: absolute;
    top: 0;
    width: 100%;
    padding: 20px 40px;
}

.header h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.header p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Кнопка */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border: 2px solid white;
  text-decoration: none;
  color: rgb(68, 37, 37);
  margin-top: 20px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn:hover {
  background: white;
  color: #111;
}

/* Блок с преимуществами */
.features {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 80px 40px;
  background-color: #fff;
  text-align: center;
}

.feature {
  max-width: 300px;
  margin: 20px;
}

.feature h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.feature p {
  font-size: 0.95rem;
  color: #555;
}

/* О компании */
.about {
  background-color: #f3f3f3;
  padding: 80px 40px;
  text-align: center;
}

.about h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.about p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1rem;
  color: #666;
}
