body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #333;
  background: #f8f9fa;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  background: linear-gradient(to right, #0d47a1, #1976d2);
  color: white;
  text-align: center;
  padding: 60px 20px;
}

header h1 {
  margin: 0;
  font-size: 3em;
}

header p {
  font-size: 1.4em;
  margin: 10px 0;
}

.launch {
  font-weight: bold;
  color: #ffeb3b;
  font-size: 1.3em;
}

.hero {
  background: #e3f2fd;
  text-align: center;
  padding: 60px 20px;
}

.cta-button {
  display: inline-block;
  background: #ff5722;
  color: white;
  padding: 15px 35px;
  margin: 10px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: background 0.3s;
}

.cta-button:hover {
  background: #f4511e;
}

.cta-button.secondary {
  background: #424242;
}

.cta-button.secondary:hover {
  background: #616161;
}

.book-cta {
  margin-top: 30px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

th, td {
  border: 1px solid #ddd;
  padding: 14px;
  text-align: center;
}

th {
  background: #0d47a1;
  color: white;
}

.note {
  font-style: italic;
  color: #555;
  text-align: center;
}

section {
  padding: 50px 0;
}

footer {
  background: #212121;
  color: white;
  text-align: center;
  padding: 30px;
}

@media (max-width: 768px) {
  header h1 { font-size: 2.2em; }
  table { font-size: 0.9em; }
}
/* === Hero Image Sizing Fix === */
.hero-image {
  max-width: 500px;          /* Caps width at 500px on large screens */
  max-height: 500px;         /* Caps height to keep it roughly square-ish */
  width: 100%;               /* Fills container on smaller screens */
  height: auto;              /* Keeps aspect ratio */
  object-fit: cover;         /* Crops nicely if image isn't square */
  border-radius: 12px;
  margin: 20px auto;         /* Centers horizontally with some breathing room */
  display: block;            /* Removes bottom gap */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .hero-image {
    max-width: 100%;         /* Full width on phones/tablets */
    max-height: 300px;       /* Smaller vertical footprint on mobile */
  }
}
