body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #121212;
  color: #f0f0f0;
  text-align: center;
}

.header {
  background-color: #1e1e1e;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo-block {
  display: flex;
  align-items: center;
}

.logo {
  height: 50px;
  margin-right: 15px;
}

.title-text h1 {
  margin: 0;
  font-size: 28px;
  color: #ffcc00;
}

.title-text p {
  margin: 0;
  font-size: 14px;
  color: #cccccc;
}

.navbar a {
  color: #ffcc00;
  margin: 0 10px;
  text-decoration: none;
  transition: color 0.3s;
}

.navbar a:hover {
  color: #ffffff;
}

.about, .company, .extra, .contact-form {
  padding: 50px 20px;
  animation: fadeIn 1s ease-in;
}

.team-img, .place-img {
  max-width: 90%;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.why-us {
  background-color: #1a1a1a;
  padding: 50px 20px;
}

.why-us h2 {
  color: #ffcc00;
  margin-bottom: 30px;
}

.reasons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.reason {
  background-color: #2a2a2a;
  padding: 20px;
  border-radius: 10px;
  width: 250px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  animation: slideUp 0.8s ease;
}

.reason h3 {
  color: #ffcc00;
}

.reviews {
  padding: 50px 20px;
  background-color: #181818;
}

.review {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
  animation: slideInLeft 0.8s ease;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #ffcc00;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  max-width: 400px;
  margin: auto;
  animation: slideInRight 0.8s ease;
}

input, textarea {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: none;
  background-color: #2b2b2b;
  color: #fff;
}

button {
  padding: 10px 20px;
  background-color: #ffcc00;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  color: #000;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #ffd633;
}

.footer {
  background-color: #1e1e1e;
  padding: 20px;
  font-size: 14px;
}

.footer a {
  color: #ffcc00;
  text-decoration: none;
  margin: 0 5px;
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2a2a2a;
  color: #fff;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  z-index: 1000;
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes slideUp {
  from {transform: translateY(20px); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}

@keyframes slideInLeft {
  from {transform: translateX(-30px); opacity: 0;}
  to {transform: translateX(0); opacity: 1;}
}

@keyframes slideInRight {
  from {transform: translateX(30px); opacity: 0;}
  to {transform: translateX(0); opacity: 1;}
}
