body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9f9f9;
  color: #333;
  text-align: center;
  scroll-behavior: smooth;
}

header.header.light {
  background-color: #fffbe6;
  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.1);
  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: #b28900;
}

.title-text p {
  margin: 0;
  font-size: 0.9rem;
  color: #777;
}

.navbar a {
  color: #333;
  text-decoration: none;
  margin: 0 1rem;
  transition: color 0.3s;
}

.navbar a:hover {
  color: #b28900;
}

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.1);
  animation: zoomIn 1s ease;
}

.why-us h2, .reviews h2, .contact-form h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #b28900;
}

.reason {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  color: #444;
}

.custom-content {
  max-width: 800px;
  margin: auto;
  color: #444;
  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: 1px solid #ccc;
  background-color: #fff;
  color: #000;
}

.contact-form button {
  background-color: #b28900;
  color: #fff;
  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: #8e6e00;
}

footer.footer.light {
  background-color: #f2f2f2;
  padding: 1rem;
  font-size: 0.9rem;
  color: #777;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.05);
}

footer.footer a {
  color: #b28900;
  text-decoration: none;
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fffbe6;
  color: #333;
  padding: 1rem;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  z-index: 999;
}

.cookie-popup a {
  color: #b28900;
  text-decoration: underline;
}

.cookie-popup button {
  background-color: #b28900;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  margin-left: 1rem;
  font-weight: bold;
  color: #fff;
  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);}
}
