body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background-color: #0e0f13;
  color: #e1e3ea;
  line-height: 1.6;
}

a {
  color: #1fcaff;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #0ba5d4;
}

.site-header {
  background-color: #12141a;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 3px solid #1fcaff;
  color: #fff;
}

.logo-block {
  display: flex;
  align-items: center;
}

.logo {
  width: 60px;
  margin-right: 15px;
}

.company-info h1 {
  margin: 0;
  color: #1fcaff;
}

.company-info p {
  margin: 0;
  font-size: 14px;
  color: #aaa;
}

.navbar a {
  margin-left: 20px;
  font-weight: bold;
  color: #e1e3ea;
}

section {
  padding: 60px 20px;
  text-align: center;
}

.team-photo, .place-photo {
  max-width: 600px;
  width: 90%;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 255, 255, 0.2);
  margin-bottom: 30px;
}

.reasons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.reason {
  background-color: #191b22;
  border: 1px solid #2c2f38;
  padding: 20px;
  width: 300px;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.reason:hover {
  transform: translateY(-5px);
}

.extra-content {
  background-color: #14161c;
  border-top: 1px solid #2a2e36;
  border-bottom: 1px solid #2a2e36;
}

.reviews .review {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.review-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 20px;
}

.review-text {
  max-width: 500px;
  text-align: left;
}

.contact-form form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input, .contact-form textarea {
  padding: 12px;
  border: 1px solid #2d3038;
  border-radius: 8px;
  font-size: 16px;
  background: #0e0f13;
  color: #e1e3ea;
}

.contact-form button {
  padding: 12px;
  background-color: #1fcaff;
  color: #0e0f13;
  border: none;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #0ba5d4;
}

.site-footer {
  background-color: #12141a;
  color: #999;
  text-align: center;
  padding: 30px 20px;
  border-top: 3px solid #1fcaff;
}

.cookie-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #191b22;
  color: #e1e3ea;
  padding: 20px;
  border: 1px solid #2c2f38;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,255,255,0.2);
  max-width: 300px;
  z-index: 1000;
}

.cookie-popup button {
  margin-top: 10px;
  margin-right: 10px;
  padding: 8px 12px;
  background-color: #1fcaff;
  border: none;
  color: #0e0f13;
  cursor: pointer;
  border-radius: 6px;
}

/* Animations */
.fade-in {
  animation: fadeIn 1s ease-in-out both;
}

.slide-up {
  animation: slideUp 1s ease-in-out both;
}

.slide-left {
  animation: slideLeft 1s ease-in-out both;
}

.slide-right {
  animation: slideRight 1s ease-in-out both;
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes slideUp {
  from {opacity: 0; transform: translateY(20px);}
  to {opacity: 1; transform: translateY(0);}
}

@keyframes slideLeft {
  from {opacity: 0; transform: translateX(-20px);}
  to {opacity: 1; transform: translateX(0);}
}

@keyframes slideRight {
  from {opacity: 0; transform: translateX(20px);}
  to {opacity: 1; transform: translateX(0);}
}

@media (max-width: 768px) {
  .reasons {
    flex-direction: column;
    align-items: center;
  }
  .reason {
    width: 90%;
  }
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .navbar {
    margin-top: 15px;
  }
}
