/* Общие стили */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

h1, h2, h3 {
  color: #333;
}

/* Главный экран */
.hero {
  background: url('bg4.jpg') no-repeat center center/cover;
  color: #777;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

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

.cta-button {
  background: #ff6347;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 30px;
}

.cta-button:hover {
  background: #ff4500;
}

/* О нас */
.about, .services, .contact {
  padding: 60px 20px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about h2, .services h2, .contact h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about p {
  font-size: 1.2rem;
  color: #666;
}

/* Услуги */
.services {
  display: flex;
  flex-direction: column;
}

.service-item {
  background: #f4f4f4;
  margin: 10px 0;
  padding: 20px;
  border-radius: 5px;
}

/* Контакты */
.contact form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact input, .contact textarea {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.contact button {
  background: #333;
  color: #fff;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.contact button:hover {
  background: #555;
}

/* Подвал */
footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 10px 0;
}
