body {
  font-family: sans-serif;
  text-align: center;
  margin: 0;
  padding: 0;
  background: #f5f5f5;
}

h1 {
  margin: 30px 0 10px;
}

.slideshow-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}


.slideshow-container {
  position: relative;
  width: 80%;
  max-width: 600px;
  aspect-ratio: 16 / 10; /* Forces fixed height relative to width */
  overflow: hidden;
  margin: 0 auto;
  background-color: #000; /* fallback while loading */
  border-radius: 12px;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}


.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Crop the image to fill container */
  border-radius: 12px;
}




/* Show form after slideshow */
.form-container {
  width: 80%;
  max-width: 800px;
  margin: 0 auto 50px;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

input, textarea {
  width: 90%;
  padding: 10px;
  margin: 10px 0;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

button {
  padding: 10px 20px;
  font-size: 16px;
  background: #0077cc;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

button:hover {
  background: #005fa3;
}

.status {
  margin-top: 15px;
  color: green;
  font-weight: bold;
}

/* Improve readability on large screens */
p, ul, ol, blockquote {
  max-width: 75ch;
  margin-left: auto;
  margin-right: auto;
}

/* Clean, centered services list */
.services-list {
  list-style: none;
  padding: 0;
  margin: 2rem auto;
  max-width: 75ch;
}

.services-list li {
  margin: 0.8rem 0;
}

.services-list strong {
  display: inline-block;
  min-width: 22ch;
}

