*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #0B87BA;
  --primary-dark: #086a94;
  --primary-light: #B8E4F5;
  --accent: #F4A024;
  --bg-light: #F5FAFD;
  --bg-dark: #0A3D52;
  --bg-section-alt: #E8F4FA;
  --text-dark: #1A2B33;
  --text-light: #FFFFFF;
  --text-muted: #4A6270;
  --border: #C5DCE8;
  --shadow: 0 8px 32px rgba(11, 135, 186, 0.12);
  --radius: 12px;
  --transition: 0.3s ease;
  --header-h: 72px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

ul, ol {
  padding-left: 1.25rem;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.disclaimer-bar {
  background: var(--bg-dark);
  color: var(--text-light);
  font-size: 0.8rem;
  text-align: center;
  padding: 0.5rem 1rem;
  line-height: 1.4;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-link img {
  height: 40px;
  width: auto;
}

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--primary);
  border-radius: 8px;
  padding: 0.4rem 0.6rem;
  cursor: pointer;
  color: var(--primary);
  font-size: 1.5rem;
  line-height: 1;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 0.25rem 1.5rem;
  padding: 0;
  flex-wrap: wrap;
}

.main-nav a {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 61, 82, 0.82) 0%, rgba(11, 135, 186, 0.65) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--text-light);
  padding: 2rem 1.25rem;
  max-width: 800px;
}

.hero-content h1 {
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  margin-bottom: 1.75rem;
  opacity: 0.95;
}

.hero-inner {
  min-height: 55vh;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--primary);
  color: var(--text-light);
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--text-light);
}

.btn-outline {
  background: transparent;
  color: var(--text-light);
  border-color: var(--text-light);
}

.btn-outline:hover {
  background: var(--text-light);
  color: var(--primary);
}

.btn-accent {
  background: var(--accent);
  color: var(--text-dark);
  border-color: var(--accent);
}

.btn-accent:hover {
  background: #e09010;
  border-color: #e09010;
  color: var(--text-dark);
}

.section {
  padding: 4rem 0;
}

.section-alt {
  background: var(--bg-section-alt);
}

.section-dark {
  background: var(--bg-dark);
  color: var(--text-light);
}

.section-dark h2,
.section-dark h3 {
  color: var(--text-light);
}

.section-dark p,
.section-dark li {
  color: #D8ECF5;
}

.section-primary {
  background: var(--primary);
  color: var(--text-light);
}

.section-primary h2,
.section-primary h3 {
  color: var(--text-light);
}

.section-primary p,
.section-primary li {
  color: #E8F6FC;
}

.section-header {
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.section-dark .section-header h2,
.section-primary .section-header h2 {
  color: var(--text-light);
}

.section-header .subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 700px;
}

.section-dark .section-header .subtitle,
.section-primary .section-header .subtitle {
  color: #B8D8E8;
}

.broken-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.broken-grid .grid-item {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.section-dark .broken-grid .grid-item,
.section-primary .broken-grid .grid-item {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.broken-grid .span-4 { grid-column: span 4; }
.broken-grid .span-5 { grid-column: span 5; }
.broken-grid .span-6 { grid-column: span 6; }
.broken-grid .span-7 { grid-column: span 7; }
.broken-grid .span-8 { grid-column: span 8; }
.broken-grid .span-12 { grid-column: span 12; }
.broken-grid .offset-1 { grid-column-start: 2; }

.broken-grid .grid-item h3 {
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-dark .broken-grid .grid-item h3,
.section-primary .broken-grid .grid-item h3 {
  color: var(--primary-light);
}

.broken-grid .grid-item p {
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.section-dark .broken-grid .grid-item p,
.section-primary .broken-grid .grid-item p {
  color: #D8ECF5;
}

.broken-grid .grid-item .bi {
  color: var(--accent);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.section-dark .broken-grid .grid-item .bi,
.section-primary .broken-grid .grid-item .bi {
  color: var(--accent);
}

.image-block {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 260px;
}

.image-block.offset-up {
  margin-top: -2rem;
}

.image-block.offset-down {
  margin-bottom: -2rem;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-dark);
}

.section-dark .feature-list li,
.section-primary .feature-list li {
  border-bottom-color: rgba(255, 255, 255, 0.15);
  color: #D8ECF5;
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list .bi {
  color: var(--primary);
  font-size: 1.25rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.section-dark .feature-list .bi,
.section-primary .feature-list .bi {
  color: var(--accent);
}

.numbered-steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
}

.numbered-steps li {
  counter-increment: step;
  position: relative;
  padding: 1.25rem 1.25rem 1.25rem 3.5rem;
  margin-bottom: 1rem;
  background: #fff;
  border-radius: var(--radius);
  border-left: 4px solid var(--primary);
  box-shadow: var(--shadow);
  color: var(--text-dark);
}

.numbered-steps li::before {
  content: counter(step);
  position: absolute;
  left: 1rem;
  top: 1.1rem;
  width: 2rem;
  height: 2rem;
  background: var(--primary);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.info-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.info-card:hover {
  transform: translateY(-4px);
}

.info-card .bi {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}

.info-card h3 {
  color: var(--primary);
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
}

.info-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.section-dark .info-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.section-dark .info-card h3 {
  color: var(--primary-light);
}

.section-dark .info-card p {
  color: #C8E0EC;
}

.section-dark .safety-item {
  background: rgba(255, 255, 255, 0.95);
}

.section-dark .safety-item h4 {
  color: var(--text-dark);
}

.section-dark .safety-item p {
  color: var(--text-muted);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.1rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-question .bi {
  color: var(--primary);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item.open .faq-question .bi {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition);
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 1.25rem 1.25rem;
  color: var(--text-muted);
}

.events-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.events-table th,
.events-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  color: var(--text-dark);
}

.events-table th {
  background: var(--primary);
  color: var(--text-light);
  font-weight: 600;
}

.events-table tr:last-child td {
  border-bottom: none;
}

.events-table tr:hover td {
  background: var(--bg-section-alt);
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.safety-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.safety-item .bi {
  font-size: 1.75rem;
  color: var(--primary);
  flex-shrink: 0;
}

.safety-item h4 {
  color: var(--text-dark);
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.safety-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.cta-block {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius);
  color: var(--text-light);
}

.cta-block h2 {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.cta-block p {
  color: #E8F6FC;
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-info-list {
  list-style: none;
  padding: 0;
}

.contact-info-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-dark);
}

.contact-info-list .bi {
  color: var(--primary);
  font-size: 1.35rem;
  margin-top: 0.2rem;
}

.contact-form {
  background: #fff;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--bg-light);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.checkbox-group input {
  width: auto;
  margin-top: 0.3rem;
  flex-shrink: 0;
}

.checkbox-group label {
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 2rem;
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: 0;
  display: block;
}

.site-footer {
  background: var(--bg-dark);
  color: #B8D8E8;
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-nav h4 {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
}

.footer-nav li {
  margin-bottom: 0.5rem;
}

.footer-nav a {
  color: #B8D8E8;
  font-size: 0.9rem;
}

.footer-nav a:hover {
  color: var(--text-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #fff;
  border-top: 3px solid var(--primary);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
  padding: 1.25rem;
  transform: translateY(100%);
  transition: transform var(--transition);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}

.cookie-text {
  flex: 1;
  min-width: 240px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.cookie-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.cookie-text-block {
  flex: 1;
  min-width: 260px;
}

.cookie-text a {
  color: var(--primary);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.cookie-actions .btn {
  padding: 0.65rem 1.15rem;
  font-size: 0.875rem;
  min-width: 9.5rem;
  justify-content: center;
}

.btn-accept {
  background: var(--primary);
  color: var(--text-light);
  border: 2px solid var(--primary);
  font-weight: 600;
}

.btn-accept:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--text-light);
}

.btn-decline {
  background: #fff;
  color: var(--text-dark);
  border: 2px solid var(--text-dark);
  font-weight: 600;
}

.btn-decline:hover {
  background: var(--text-dark);
  color: var(--text-light);
}

.btn-settings {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--primary);
  font-weight: 600;
}

.btn-settings:hover {
  background: var(--bg-section-alt);
  color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(10, 61, 82, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.cookie-modal.visible {
  display: flex;
}

.cookie-modal-content {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal-content h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.cookie-category {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.cookie-category:last-of-type {
  border-bottom: none;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.35rem;
}

.cookie-category h4 {
  font-size: 0.95rem;
  color: var(--text-dark);
}

.cookie-category p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.toggle-switch {
  position: relative;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  inset: 0;
  background: #ccc;
  border-radius: 26px;
  cursor: pointer;
  transition: background var(--transition);
}

.toggle-slider::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform var(--transition);
}

.toggle-switch input:checked + .toggle-slider {
  background: var(--primary);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(22px);
}

.toggle-switch input:disabled + .toggle-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-modal-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.cookie-modal-actions .btn {
  min-width: 9.5rem;
  justify-content: center;
}

.policy-content {
  padding: 3rem 0 4rem;
}

.policy-content h1 {
  color: var(--primary);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  margin-bottom: 0.5rem;
}

.policy-content .updated {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.policy-content h2 {
  color: var(--primary);
  font-size: 1.35rem;
  margin: 2rem 0 0.75rem;
}

.policy-content p,
.policy-content li {
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.policy-content ul {
  margin-bottom: 1rem;
}

.success-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.25rem;
}

.success-box {
  background: #fff;
  padding: 3rem 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 560px;
  border: 1px solid var(--border);
}

.success-box .bi {
  font-size: 4rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.success-box h1 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.success-box p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.two-col-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.two-col-text p {
  color: var(--text-muted);
}

.section-alt .two-col-text p,
.section:not(.section-dark):not(.section-primary) .two-col-text p {
  color: var(--text-dark);
}

.section-dark .two-col-text p {
  color: #D8ECF5;
}

.section-primary .two-col-text p {
  color: #E8F6FC;
}

.highlight-box {
  background: var(--primary-light);
  border-left: 4px solid var(--primary);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0;
}

.highlight-box p {
  color: var(--text-dark);
  margin: 0;
}

.editorial-notice {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
}

.editorial-notice p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.6;
}

.editorial-notice strong {
  color: var(--text-dark);
}

.trust-bar {
  background: var(--bg-dark);
  color: #C8E0EC;
  padding: 0.85rem 0;
  font-size: 0.85rem;
}

.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: center;
  align-items: center;
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.trust-bar-item .bi {
  color: var(--accent);
  font-size: 1rem;
}

.business-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.business-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.15rem;
}

.business-card ul {
  list-style: none;
  padding: 0;
}

.business-card li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.business-card li:last-child {
  border-bottom: none;
}

.sources-list {
  list-style: none;
  padding: 0;
}

.sources-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.section-dark .sources-list li {
  color: #D8ECF5;
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.section-dark .sources-list a {
  color: #B8E4F5;
}

.section-dark .sources-list a:hover {
  color: #fff;
}

.section-alt .sources-list li,
.section:not(.section-dark):not(.section-primary) .sources-list li {
  color: var(--text-dark);
}

.section-alt .sources-list a,
.section:not(.section-dark):not(.section-primary) .sources-list a {
  color: var(--primary);
}

.sources-list li:last-child {
  border-bottom: none;
}

.sources-list a {
  font-weight: 600;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.tag-list li {
  background: var(--primary);
  color: var(--text-light);
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  font-size: 0.85rem;
}

@media (max-width: 992px) {
  .broken-grid .span-4,
  .broken-grid .span-5,
  .broken-grid .span-6,
  .broken-grid .span-7,
  .broken-grid .span-8 {
    grid-column: span 12;
  }

  .broken-grid .offset-1 {
    grid-column-start: 1;
  }

  .contact-grid,
  .two-col-text,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .image-block.offset-up,
  .image-block.offset-down {
    margin: 0;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
  }

  .main-nav.open {
    max-height: 400px;
  }

  .main-nav ul {
    flex-direction: column;
    padding: 1rem 1.25rem 1.5rem;
    gap: 0;
  }

  .main-nav a {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
  }

  .section {
    padding: 2.5rem 0;
  }

  .events-table {
    display: block;
    overflow-x: auto;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-actions {
    justify-content: stretch;
  }

  .cookie-actions .btn {
    flex: 1;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  :root {
    --header-h: 64px;
  }

  .logo-link img {
    height: 32px;
  }

  .hero-content {
    padding: 1.5rem 1rem;
  }

  .btn {
    padding: 0.65rem 1.1rem;
    font-size: 0.875rem;
  }

  .contact-form {
    padding: 1.25rem;
  }

  .map-container iframe {
    height: 280px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .disclaimer-bar {
    font-size: 0.72rem;
  }
}

@media (max-width: 320px) {
  .container {
    padding: 0 0.75rem;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .broken-grid .grid-item {
    padding: 1.25rem;
  }

  .info-card {
    padding: 1.25rem;
  }

  .cookie-modal-content {
    padding: 1.25rem;
  }
}
