body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f0f8ff;
  color: #333;
}

header {
  background-color: #0099cc;
  color: white;
  padding: 20px;
  text-align: center;
}

header nav a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
}

header nav a:hover {
  text-decoration: underline;
}

main {
  padding: 20px;
  text-align: center;
}

.main-image {
  max-width: 80%;
  height: auto;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #0099cc;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

.btn:hover {
  background-color: #0077aa;
}

.main-video {
  width: 80%;
  max-width: 700px;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
  margin-bottom: 20px;
}

/* ---------- IMAGE ROW FIXED SIDE BY SIDE ---------- */
.image-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin: 20px auto;
  max-width: 1200px; /* keeps layout centered */
}

.image-box {
  flex: 1; /* equal width for both boxes */
  max-width: 50%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.image-box img {
  width: 100%;
  height: 300px; /* make equal height boxes */
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.image-box1 img {
  width: 100%;

  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.image-box img:hover {
  transform: scale(1.05);
}

/* Responsive for phones */
@media (max-width: 768px) {
  .image-row {
    flex-direction: column;
  }

  .image-box {
    max-width: 100%;
  }

  .image-box img {
    height: auto;
  }
}
