body {
  margin: 0;
  font-family: 'Press Start 2P', monospace;
  background-color: #faf7f2;
  color: #222;
  text-align: center;
}

.header {
  background-color: #1f2a44;
  color: #ffe600;
  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: 22px;
  font-weight: bold;
}

.header-text p {
  margin: 4px 0 0;
  font-size: 11px;
  color: #fffacd;
}

.navbar a {
  color: #ffe600;
  margin-left: 20px;
  text-decoration: none;
  font-size: 12px;
  transition: color 0.3s ease;
}

.navbar a:hover {
  color: #ffffff;
}

.about,
.company,
.custom-block,
.reviews,
.contact-form {
  padding: 50px 20px;
  animation: fadeIn 0.8s ease-in-out;
}

.about img,
.company img {
  max-width: 90%;
  border: 4px solid #ffe600;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  margin-bottom: 30px;
}

.about-text p,
.company p,
.custom-block p {
  max-width: 700px;
  margin: 12px auto;
  line-height: 1.6;
  font-size: 14px;
}

.why-us {
  background: #fff;
  padding: 60px 20px;
}

.why-us h2 {
  color: #1f2a44;
  margin-bottom: 30px;
}

.reasons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.reasons h3 {
  color: #1f2a44;
  font-size: 14px;
}

.reasons p {
  font-size: 13px;
  color: #333;
}

.review {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto;
  max-width: 600px;
  background: #fff;
  padding: 20px;
  border: 2px dashed #ffe600;
  border-radius: 10px;
}

.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: 12px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 2px solid #1f2a44;
  border-radius: 8px;
  font-size: 13px;
  font-family: monospace;
}

.contact-form button {
  background-color: #1f2a44;
  color: #ffe600;
  border: none;
  padding: 14px;
  font-size: 13px;
  font-family: monospace;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background-color: #293b60;
}

.footer {
  background-color: #1f2a44;
  color: #fff;
  padding: 30px 10px;
  font-size: 11px;
}

.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: 999;
}

.cookie-banner button {
  padding: 10px 20px;
  background: #ffe600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  font-family: monospace;
  color: #000;
}

.cookie-banner button:hover {
  background: #fff100;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
