body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fff9f2;
  color: #2b2b2b;
  text-align: center;
}

.header {
  background-color: #8b0000;
  color: gold;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.logo {
  max-height: 60px;
}

.navbar a {
  margin: 0 10px;
  color: gold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.navbar a:hover {
  color: #ffd700;
}

.team-photo,
.place-photo {
  max-width: 90%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin: 20px auto;
}

.reasons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.reason {
  flex: 1 1 300px;
  background: #fff;
  border: 2px solid #e0b000;
  padding: 15px;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}

.reason:hover {
  transform: translateY(-5px);
}

.extra-info,
.about,
.company,
.contact-form {
  padding: 30px 20px;
  max-width: 960px;
  margin: auto;
}

h2 {
  color: #8b0000;
}

.review {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  max-width: 700px;
  margin: 20px auto;
  padding: 15px;
  background: #fff8e1;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #8b0000;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 400px;
  margin: 0 auto;
}

input, textarea {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

button {
  padding: 10px 20px;
  background-color: #8b0000;
  color: gold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background-color: #a80000;
}

.footer {
  background-color: #8b0000;
  color: gold;
  padding: 20px;
  font-size: 0.9rem;
}

.cookie-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #fff;
  border: 1px solid #ccc;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  max-width: 300px;
  z-index: 999;
}

.cookie-popup .buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

/* Animations */
.fade-in {
  animation: fadeIn 1s ease-in-out;
}

.slide-in-left {
  animation: slideInLeft 1s ease-in-out;
}

.slide-in-right {
  animation: slideInRight 1s ease-in-out;
}

.slide-in-top {
  animation: slideInTop 1s ease-in-out;
}

.slide-in-bottom {
  animation: slideInBottom 1s ease-in-out;
}

.zoom-in {
  animation: zoomIn 0.8s ease-in-out;
}

@keyframes fadeIn {
  from {opacity: 0;} to {opacity: 1;}
}

@keyframes slideInLeft {
  from {transform: translateX(-100%);} to {transform: translateX(0);}
}

@keyframes slideInRight {
  from {transform: translateX(100%);} to {transform: translateX(0);}
}

@keyframes slideInTop {
  from {transform: translateY(-100%);} to {transform: translateY(0);}
}

@keyframes slideInBottom {
  from {transform: translateY(100%);} to {transform: translateY(0);}
}

@keyframes zoomIn {
  from {transform: scale(0.8); opacity: 0;} to {transform: scale(1); opacity: 1;}
}
