* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background: linear-gradient(to bottom, #086d08,#2e7d32, #6ec588);
  color: #333;
  padding: 1rem;
}

header {
  background: #2e7d32;
  color: white;
  padding: 1rem;
  display: flex;
  align-items: center;
}

header img {
  margin-right: 2rem;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 1rem;
}

#datetime-container {
  text-align: center;
  padding: 10px;
  background-color: #086d08;
  border-radius: 8px;
  width: fit-content;
  margin: 10px auto;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#datetime-container p {
  margin: 5px 0;
  font-size: 1.1rem;
  color: #333;
}


.land-details {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.land-images img {
  width: 100%;
  border-radius: 4px;
}

.land-info {
  background: #fff;
  padding: 1rem;
  border-radius: 4px;
}

.slideshow-container {
  position: relative;
  max-width: 100%;
  height: auto;
  overflow: hidden;
}

.slide {
  display: none;
  width: 100%;
  border-radius: 5px;
}

.slide.active {
  display: block;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 10px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.3s ease;
  border-radius: 3px;
  user-select: none;
  background-color: rgba(0,0,0,0.5);
}

.prev {
  left: 10px;
}
.next {
  right: 10px;
}

@media(max-width: 768px) {
  .prev, .next {
    font-size: 14px;
    padding: 10px;
  }
}

.contact {
  background: #a6eeac;
  padding: 2rem;
  border-radius: 5px;
  margin-bottom: 5rem;
}

.seller-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: #f0fff0;
  padding: 1rem;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.seller-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.whatsapp-note {
  font-size: 1.1rem;
  font-weight: bold;
  color: red;
  margin-top: 0.8rem;
}

footer {
  text-align: center;
  background: #2e7d32;
  color: white;
  padding: 2rem;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .land-details {
    flex-direction: column;
  }
}


