body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f4f4f9;
  color: #333;
  text-align: center;
}

.header {
  background-color: #1e1e3f;
  color: #fff;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo-section {
  display: flex;
  align-items: center;
}

.logo {
  height: 50px;
  margin-right: 15px;
}

.header-text h1 {
  margin: 0;
  font-size: 24px;
}

.header-text p {
  margin: 2px 0 0 0;
  font-size: 14px;
}

.navbar a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.navbar a:hover {
  color: #f9ca24;
}

.about,
.company,
.custom-block,
.reviews,
.contact-form {
  padding: 50px 20px;
}

.about img,
.company img {
  max-width: 90%;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.about-text p,
.company p,
.custom-block p {
  max-width: 700px;
  margin: 10px auto;
  line-height: 1.6;
}

.why-us {
  background-color: #fff;
  padding: 50px 20px;
}

.why-us h2 {
  margin-bottom: 30px;
}

.reasons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: left;
  max-width: 1200px;
  margin: 0 auto;
}

.reasons h3 {
  color: #1e1e3f;
}

.review {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto;
  max-width: 600px;
  text-align: left;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.review .avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.contact-form form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

.contact-form button {
  background-color: #1e1e3f;
  color: #fff;
  border: none;
  padding: 14px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background-color: #3c3c7c;
}

.footer {
  background-color: #1e1e3f;
  color: #fff;
  padding: 30px 10px;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #333;
  color: #fff;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  z-index: 1000;
}

.cookie-banner button {
  padding: 8px 16px;
  background: #f9ca24;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  color: #000;
  font-weight: bold;
  transition: background 0.3s;
}

.cookie-banner button:hover {
  background: #f1c40f;
}

/* Анимации */
section {
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from {opacity: 0; transform: translateY(30px);}
  to {opacity: 1; transform: translateY(0);}
}
