body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f7f7f7;
  color: #222;
}

.header {
  background: #111;
  color: #fff;
  padding: 140px 20px;
  text-align: center;
}

.section {
  padding: 40px 20px;
  max-width: 1100px;
  margin: auto;
}

.highlight {
  background: #ffeec2;
  border-left: 6px solid #ff9800;
}

h1, h2 {
  margin-bottom: 20px;
}

.info-grid, .accommodation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.card, .accommodation-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.timeline {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.timebox {
  flex: 1 1 280px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  border-left: 6px solid #0077ff;
}

.timebox.important {
  border-left: 6px solid #d50000;
  background: #ffe5e5;
}

.permit-box {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.permit-box a {
  text-decoration: none;
  color: #0055dd;
  font-weight: bold;
}

