
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}
header, section, footer {
  padding: 20px;
  
}
header {
  background-color: #f4f4f4;
  text-align: center;
  
}
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #333;
  padding: 10px;
  text-align: center;
}
nav a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
}
.container {
  max-width: 1000px;
  margin: auto;
}
h1, h2 {
  color: #333;
}
.destination {
  margin-bottom: 40px;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}
th, td {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: center;
}
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  justify-content: center;
}
.gallery img {
  height: 300px;
  max-width: 100%;
  object-fit: cover;
}
.thumbnail img { 
  height: 500px; 
  cursor: pointer; }
@media (max-width: 768px) {
  .gallery {
    flex-direction: column;
    align-items: center;
  }
  .gallery img {
    width: 90%;
    height: auto;
  }
}

@media print {
  header, nav, .carousel-control-prev, .carousel-control-next, iframe {
    display: none;
  }
  body {
    background: white;
    color: black;
    font-size: 12pt;
  }
  .gallery img, .carousel-item img, .carousel {
    height: 150px !important;
    max-width: 100% !important;
    object-fit: contain;
    page-break-inside: avoid;
  }
  main.container {
    width: 100%;
    padding: 0;
    margin: 0;
  }
}
form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-image: url('8.jpg');
  background-size: cover;
  background-position: center;
  padding: 30px;
  border-radius: 0px;
  color: #fff;
}
input[type="text"], input[type="email"], textarea {
  width: 100%;
  padding: 10px;
}
input[type="file"] {
  margin-top: 10px;
}
input[type="submit"], input[type="reset"] {
  padding: 10px 20px;
  margin-top: 10px;
}
