body {
  margin: 0;
  font-family: 'Segoe UI', Verdana, Arial, sans-serif;
  background: url('bg1.jpg') center/cover no-repeat fixed;
  color: #222;
  min-height: 100vh;
}

header {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.95);
  padding: 0.5rem 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

.logo {
  height: 60px;
  margin-right: 1.5rem;
  cursor: pointer;
}

nav {
  display: flex;
  gap: 1.5rem;
  margin-left: auto;
}

nav a {
  text-decoration: none;
  color: #2d5c2f;
  font-weight: 600;
  font-size: 1.3rem;
  transition: color 0.2s;
}

nav a:hover {
  color: #4caf50;
}

main {
  background: rgba(255,255,255,0.92);
  margin: 2rem auto;
  padding: 2rem;
  border-radius: 1rem;
  max-width: 700px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

h1, h2 {
  color: #2d5c2f;
}

.contact-info {
  margin: 1.5rem 0;
  font-size: 1.1rem;
}

.map-link {
  display: inline-block;
  margin-top: 0.5rem;
  color: #1976d2;
  text-decoration: underline;
}

.carousel {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 2rem auto;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  background: #fff;
}

.carousel img {
  width: 100%;
  display: none;
  border-radius: 1rem;
}

.carousel img.active {
  display: block;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.carousel-controls button {
  background: #4caf50;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.2s;
}

.carousel-controls button:hover {
  background: #388e3c;
}

@media (max-width: 800px) {
  main {
    margin: 1rem;
    padding: 1rem;
  }
  
  header {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.5rem 1rem;
  }
  
  nav {
    margin-left: 0;
    margin-top: 0.5rem;
  }
}
