/* Основни стилове */
body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background-color: #0e1a2b;
  color: #fff;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 40px 0;
}

/* Хедър */
.hero {
  background-image: url('images/background.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  padding: 150px 20px;
  animation: fadeIn 2s ease-in-out;
}

.hero h1 {
  font-size: 60px;
  font-family: 'Roboto Slab', serif;
  color: #ffd700;
  margin-bottom: 20px;
}

.hero p {
  font-size: 24px;
  margin: 10px 0 30px;
}

.hero .btn {
  background-color: #ffd700;
  color: #0e1a2b;
  padding: 12px 24px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.hero .btn:hover {
  background-color: #c68c00;
}

/* За нас секция */
.about {
  background-color: #142136;
  padding: 50px 20px;
  border-top: 1px solid #333;
}

.about h2 {к,флцлешцдл.жлрлжцфлжрдлепрквеопжйкфдьоп;гйсредол;фйсдр
  text-align: center;
  font-size: 36px;
  color: #ffd700;
  margin-bottom: 20px;
}

.about p {
  font-size: 18px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* Услуги секция */
.services {
  background-color: #1c2b45;
  padding: 50px 20px;
}

.services h2 {
  text-align: center;
  font-size: 36px;
  color: #ffd700;
  margin-bottom: 40px;
}

.service-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  background-color: #142136;
  padding: 20px;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-10px);
}

.service-icon {
  font-size: 40px;
  margin-right: 20px;
}

.service-text h3 {
  font-size: 24px;
  color: #ffd700;
}

.service-text p {
  font-size: 18px;
}

/* Контакти секция */
.contact {
  background-color: #0e1a2b;
  padding: 50px 20px;
  color: #fff;
  text-align: center;
}

.contact h2 {
  font-size: 36px;
  color: #ffd700;
}

.contact form {
  margin-top: 30px;
}

.contact input, .contact textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 15px;
  border: 1px solid #ffd700;
  background-color: #1c2b45;
  color: #fff;
  border-radius: 5px;
}

.contact button {
  padding: 15px 30px;
  background-color: #ffd700;
  color: #0e1a2b;
  border: none;
  font-size: 18px;
  border-radius: 5px;
  cursor: pointer;
}

.contact button:hover {
  background-color: #c68c00;
}

/* Футър */
footer {
  background-color: #142136;
  color: #fff;
  text-align: center;
  padding: 20px;
}
