body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #0d0d0d;
  color: #f0f0f0;
  text-align: center;
  scroll-behavior: smooth;
}

header.header {
  background-color: #1a1a2e;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  animation: fadeInDown 1s ease;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  height: 60px;
}

.title-text h1 {
  margin: 0;
  font-size: 1.8rem;
  color: #00ffe5;
}

.title-text p {
  margin: 0;
  font-size: 0.9rem;
  color: #aaa;
}

.navbar a {
  color: #f0f0f0;
  text-decoration: none;
  margin: 0 1rem;
  transition: color 0.3s;
}

.navbar a:hover {
  color: #00ffe5;
}

section {
  padding: 3rem 1rem;
  animation: fadeIn 1s ease;
}

.team-photo, .company-photo {
  width: 80%;
  max-width: 800px;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.4);
  animation: zoomIn 1s ease;
}

.why-us h2, .reviews h2, .contact-form h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #00ffe5;
}

.reason {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  color: #ccc;
}

.custom-content {
  max-width: 800px;
  margin: auto;
  color: #ddd;
  line-height: 1.8;
}

.review {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 500px;
  margin: auto;
}

.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border-radius: 8px;
  border: none;
  background-color: #1a1a2e;
  color: #fff;
}

.contact-form button {
  background-color: #00ffe5;
  color: #000;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-form button:hover {
  background-color: #00ccb8;
}

footer.footer {
  background-color: #111;
  padding: 1rem;
  font-size: 0.9rem;
  color: #aaa;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.5);
}

footer.footer a {
  color: #00ffe5;
  text-decoration: none;
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a2e;
  color: #fff;
  padding: 1rem;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.5);
  z-index: 999;
}

.cookie-popup a {
  color: #00ffe5;
  text-decoration: underline;
}

.cookie-popup button {
  background-color: #00ffe5;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  margin-left: 1rem;
  font-weight: bold;
  cursor: pointer;
}

@keyframes fadeIn {
  from {opacity: 0; transform: translateY(20px);}
  to {opacity: 1; transform: translateY(0);}
}

@keyframes fadeInDown {
  from {opacity: 0; transform: translateY(-20px);}
  to {opacity: 1; transform: translateY(0);}
}

@keyframes zoomIn {
  from {opacity: 0; transform: scale(0.8);}
  to {opacity: 1; transform: scale(1);}
}
