:root {
  --main-color: #4b2e1b;
  --accent-color: #629d53;
  --light-bg: #fdfcfb;
  --text-color: #333;
  --footer-bg: #eee;
  --font: 'Segoe UI', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font);
  background-color: var(--light-bg);
  color: var(--text-color);
  line-height: 1.6;
}

header {
  background-color: var(--main-color);
  color: white;
  text-align: center;
  padding: 20px;
}
header img {
  max-width: 280px;
  height: auto;
}

nav {
  background-color: #333;
  padding: 12px;
  text-align: center;
}
nav a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}
nav a:hover {
  color: var(--accent-color);
}

main {
  padding: 40px 20px;
  display: flex;
  justify-content: center;
}
.content {
  text-align: center;
  max-width: 700px;
}
main a {
  color: var(--accent-color);
  font-weight: bold;
}
main a:hover {
  text-decoration: underline;
}

footer {
  background-color: var(--footer-bg);
  padding: 20px;
  text-align: center;
}
footer .socials a {
  margin: 0 15px;
  color: var(--main-color);
  font-weight: bold;
  transition: color 0.3s ease;
}
footer .socials a:hover {
  color: var(--accent-color);
}
.maps-link {
  margin-top: 10px;
}
.maps-link a {
  display: inline-block;
  margin-top: 10px;
  color: var(--main-color);
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}
.maps-link a:hover {
  color: var(--accent-color);
}

.carousel {
  margin: 30px auto 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  max-width: 800px;
  position: relative;
  height: 500px;
}
.carousel img {
  position: absolute;
  width: 100%;
  height: auto;
  opacity: 0;
  transform: scale(0.8) translateX(100%);
  transition: all 0.8s ease;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.carousel img.active {
  opacity: 1;
  transform: scale(1) translateX(0);
  z-index: 2;
}

.thumbnails {
  text-align: center;
  margin: 10px 0;
}
.thumbnails img {
  width: 100px;
  margin: 5px;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 5px;
  transition: border 0.3s ease;
}
.thumbnails img.active-thumb {
  border: 2px solid var(--accent-color);
}

.carousel-nav {
  margin: 10px auto;
  text-align: center;
}
.carousel-nav button {
  background-color: var(--main-color);
  color: white;
  border: none;
  padding: 12px 25px;
  margin: 0 10px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.carousel-nav button:hover {
  background-color: var(--accent-color);
}

@media (max-width: 600px) {
  header img {
    max-width: 85%;
  }
  nav a {
    display: inline-block;
    margin: 8px;
  }
  .carousel {
    height: auto;
  }
  .carousel img {
    width: 100%;
    height: auto;
  }
  .carousel-nav button {
    padding: 10px 20px;
    font-size: 14px;
  }
  .thumbnails img {
    width: 60px;
  }
}
```
