/* Основные стили и переменные */
:root {
  --bg-color: #0d0d0d;
  --neon-green: #00ff99;
  --neon-pink: #ff00cc;
  --neon-blue: #00ccff;
  --text-color: #ffffff;
  --footer-bg: #1a1a1a;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  text-align: center;
  scroll-behavior: smooth;
}

h1, h2, h3 {
  color: var(--neon-green);
  text-shadow: 0 0 5px var(--neon-green), 0 0 10px var(--neon-green);
}

p {
  line-height: 1.6;
  margin: 0.5em 0;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #141414;
  padding: 10px 20px;
  border-bottom: 2px solid var(--neon-green);
  animation: fadeIn 1s ease;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  width: 50px;
  margin-right: 15px;
}

.brand-text h1 {
  margin: 0;
  font-size: 1.8em;
}

.navbar a {
  color: var(--neon-green);
  text-decoration: none;
  margin-left: 20px;
  font-weight: bold;
  transition: color 0.3s;
}

.navbar a:hover {
  color: var(--neon-pink);
}

/* Sections */
section {
  padding: 40px 20px;
  animation: slideUp 1s ease;
}

.about-image, .company-image {
  max-width: 600px;
  width: 90%;
  margin: 0 auto 20px;
  display: block;
  border-radius: 10px;
  box-shadow: 0 0 20px var(--neon-blue);
}

.reasons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.reason {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 10px;
  max-width: 250px;
  box-shadow: 0 0 15px var(--neon-pink);
  transition: transform 0.3s;
}

.reason:hover {
  transform: scale(1.05);
}

/* Reviews */
.reviews {
  background-color: #111;
  padding: 50px 20px;
}

.review {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
  background: #1f1f1f;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 0 10px var(--neon-green);
}

.review img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--neon-green);
}

/* Form */
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto;
}

input, textarea {
  padding: 12px;
  border: none;
  border-radius: 5px;
  background-color: #262626;
  color: #fff;
  resize: none;
}

button {
  padding: 12px;
  background-color: var(--neon-green);
  color: #000;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: var(--neon-blue);
}

/* Footer */
.footer {
  background-color: var(--footer-bg);
  color: #aaa;
  padding: 20px;
  font-size: 0.9em;
}

.footer a {
  color: var(--neon-green);
  text-decoration: none;
  margin: 0 10px;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #202020;
  color: #fff;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.8);
  z-index: 1000;
}

.cookie-banner button {
  background: var(--neon-green);
  color: #000;
  border: none;
  padding: 8px 14px;
  border-radius: 5px;
  cursor: pointer;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@media (max-width: 768px) {
  .reasons {
    flex-direction: column;
    align-items: center;
  }

  .header {
    flex-direction: column;
    text-align: center;
  }

  .navbar {
    margin-top: 10px;
  }

  .review {
    flex-direction: column;
    text-align: center;
  }
}
