
/* Section typography */
.section p {
  font-size: 1rem;
}

/* Label styling */
.section .label {
  color: #ffcc00;
  font-weight: 500;
}

/* Link styling */
.section a {
  color: #0054a6;
  text-decoration: none;
}

.section a:hover {
  text-decoration: underline;
  color: #3399ff;
}

/* Sidebar links (reuse company blue) */
.sidebar-links a {
  color: #0054a6;
  text-decoration: none;
  font-weight: 500;
}

.sidebar-links a:hover {
  text-decoration: underline;
  color: #3399ff;
}

/* Contact/info box styling for readability */
.contact-info {
  background: rgba(0, 0, 0, 0.45);
  padding: 20px;
  border-radius: 12px;
  max-width: 700px;
  margin: 0 auto 48px;
  display: inline-block;
}

.contact-info p,
.contact-info a,
.contact-info .label {
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

/* Map container */
.map-wrap iframe {
  width: 100%;
  height: min(75vh, 600px);
  border-radius: 12px;
  border: none;
}

/* Booking form (if reused here) */
.booking .row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.booking .input,
.booking textarea {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  padding: 14px 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #eaeaea;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.booking .btn {
  margin-top: 16px;
  min-width: 200px;
  font-family: 'Rubik', sans-serif;
}
