.hours-table {
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px var(--shadow);
}

.hours-table th,
.hours-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--cream-dark);
}

.hours-table th {
  background: var(--gold);
  color: var(--dark);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hours-table td:first-child {
  font-weight: 600;
  color: var(--dark);
}

.hours-table tr:last-child td {
  border-bottom: none;
}

.hours-table tr:hover {
  background: var(--cream);
}

.timeline {
  position: relative;
  max-width: 750px;
  margin: 0 auto;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gold);
}

.timeline-item {
  position: relative;
  margin-bottom: 36px;
  padding-left: 20px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -30px;
  top: 6px;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid var(--cream);
}

.timeline-year {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 4px;
}

.timeline-text {
  color: var(--text-light);
  font-size: 0.95rem;
}

.sustain-section {
  margin-bottom: 48px;
}

.sustain-section:last-child {
  margin-bottom: 0;
}

.sustain-section h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold);
}

.sustain-section h4 {
  font-size: 1.15rem;
  margin-top: 24px;
  margin-bottom: 8px;
  color: var(--gold-dark);
}

.sustain-section p {
  margin-bottom: 12px;
  color: var(--text-light);
}

.accordion {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px var(--shadow);
}

.accordion-item {
  border-bottom: 1px solid var(--cream-dark);
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  width: 100%;
  padding: 18px 24px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}

.accordion-header:hover {
  background: var(--cream);
}

.accordion-header::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: 700;
}

.accordion-item.open .accordion-header::after {
  content: '\2212';
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 24px;
}

.accordion-item.open .accordion-body {
  max-height: 2000px;
  padding: 0 24px 24px;
}

.accordion-body p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.accordion-body p:last-child {
  margin-bottom: 0;
}

.accessibility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.access-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 2px 8px var(--shadow);
  text-align: center;
}

.access-item .card-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 8px;
  font-size: 1.2rem;
}

.access-item h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.access-item p {
  font-size: 0.85rem;
  color: var(--text-light);
}

.highlight-box {
  background: var(--white);
  border-left: 4px solid var(--gold);
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0;
  box-shadow: 0 2px 8px var(--shadow);
}

.highlight-box p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-light);
}

.page-header {
  background: var(--dark);
  padding: 60px 0 48px;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.page-header p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}
