 body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f9f9f9;
}

.container {
  display: flex;
  padding: 20px;
  gap: 20px;
}

.left-section {
  display: flex;
  flex-direction: column;
  
  flex: 2;
  width: 65%;
  background: white;
  padding: 20px;
  box-shadow: 0 0 10px #ccc;
}
.left-section p {
  font-size: 1em;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
  text-align: justify;

}
.left-section img {
  display: flex;
  max-width: 100%;
  height: auto;
  height: auto;
  border-radius: 5px;
  margin-bottom: 20px;
  box-shadow: 0 0 10px #ccc;
}

.right-section {
  width: 30%;
}

.video-gallery,
.photo-gallery,
.contact-form {
  background: white;
  padding: 15px;
  margin-bottom: 20px;
  box-shadow: 0 0 10px #ccc;
}

.photo-gallery .slider {
  display: flex;
  overflow-x: auto;
  gap: 10px;
}

.photo-gallery img {
  width: 100px;
  height: auto;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.contact-form button {
  background: orange;
  color: white;
  border: none;
  padding: 12px;
  cursor: pointer;
  border-radius: 5px;
  width: 100%;
  font-weight: bold;
}
.contact-form button:hover {
  background: darkorange;
}
.video-gallery video {
  width: 100%;
  height: auto;
}
.photo-gallery img {
  border-radius: 5px;
}
.photo-gallery .slider::-webkit-scrollbar {
  display: none;
}
.photo-gallery .slider {
  scrollbar-width: none; /* For Firefox */
}
.photo-gallery .slider::-webkit-scrollbar {
  width: 0; /* For Chrome, Safari, and Opera */
 overflow-x: scroll;
}

.video-gallery {
  display: flex;
    flex-direction: column;
    gap: 15px;
}
.video-gallery video {
  border-radius: 5px;
  box-shadow: 0 0 10px #ccc;
}          
/* responsive  */
  @media (max-width: 768px) {
    .container {
      flex-direction: column;
    }
    .left-section, .right-section {
      width: 100%;
    }
    .right-section {
      margin-top: 20px;
    }
    .video-gallery video {
      width: 100%;
    }
    .photo-gallery img {
      width: 80px;
    }
    .contact-form input,
    .contact-form textarea {
      width: 100%;
    }
    .contact-form button {
      width: 100%;
    }
  }
