.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
}

.vision-grid .image-block img {
  width: 100%;
  max-width: 400px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.vision-grid .text-block {
  padding: 1rem;
}

/* Responsive tweak */
@media (max-width: 768px) {
  .vision-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .vision-grid .image-block img {
    margin: auto;
  }
}

.image-block img {
  max-width: 400px;
  width: 100%;
  height: auto;
}
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: center;
}

.text-block {
  padding: 1rem;
}

.image-block img {
  width: 100%;
  max-width: 400px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

/* Responsive fallback for smaller screens */
@media (max-width: 768px) {
  .service-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .image-block img {
    margin: auto;
  }
}
.service {
    margin-bottom: 2em;
    padding: 1em;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  }
  .learn-more-btn {
    display: inline-block;
    margin-top: 1em;
    padding: 0.6em 1.2em;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
  }
  .learn-more-btn:hover {
    background-color: #333;
  }
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  color: #333;
  padding: 1rem 2rem;
}

.logo-container {
  flex-shrink: 0;
}

.site-logo {
  height: 60px;
  width: auto;
}
body {
  font-family: 'Segoe UI', sans-serif;
  font-size: 16px;
  background-color: #f9f9f9;
}

.container {
  max-width: 1000px;
  margin: auto;
}

table.reservations td {
  padding: 0.5rem;
  font-size: 14px;
}

.navbar {
  background-color: #222;
  color: #fff;
}