:root {
  --accent: #bacacc;
  --accent-dark: #8fa3ad;
  --bg-light: #e8f0f4;
  --bg-dark: #2c3e50;
  --bg-darker: #1a252f;
  --text-dark: #1a252f;
  --text-light: #f5f8fa;
  --text-muted: #4a5d6b;
  --contrast: #c45c26;
  --shadow: 0 4px 24px rgba(26, 37, 47, 0.12);
  --radius: 8px;
  --max-width: 1200px;
  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-dark);
  background: var(--bg-light);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--bg-darker);
  text-decoration: underline;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--contrast);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--bg-darker);
  color: var(--text-light);
}

.skip-link:focus {
  left: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-darker);
  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;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text-light);
}

.logo-link img {
  height: 48px;
  width: 48px;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--text-light);
  padding: 0.4rem 0.65rem;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.9rem;
}

.main-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
}

.main-nav a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.95rem;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.disclaimer-bar {
  background: #3d5266;
  color: var(--text-light);
  font-size: 0.8rem;
  padding: 0.5rem 0;
  text-align: center;
}

.disclaimer-bar p {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
}

.hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  background: var(--bg-darker) center/cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 37, 47, 0.88) 0%, rgba(44, 62, 80, 0.75) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 3rem 0;
  color: var(--text-light);
  max-width: 720px;
}

.hero h1 {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-lead {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--bg-light);
}

.hero-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.hero-card {
  background: rgba(186, 202, 204, 0.15);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 1rem;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  cursor: default;
}

.hero-card:hover {
  transform: translateY(-6px);
  background: rgba(186, 202, 204, 0.35);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.hero-card .material-icons {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.hero-card h3 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.hero-card p {
  font-size: 0.85rem;
  color: var(--bg-light);
}

.hero .btn {
  margin-bottom: 0.5rem;
}

.hero-content .btn-outline {
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .hero-content .btn-outline {
    margin-left: 0 !important;
    display: inline-block;
  }
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--contrast);
  color: var(--text-light) !important;
  text-decoration: none;
  border-radius: var(--radius);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.btn:hover {
  background: #a34d1f;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--text-light) !important;
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--text-dark) !important;
}

.section {
  padding: 3.5rem 0;
}

.section-alt {
  background: var(--accent);
  color: var(--text-dark);
}

.section-dark {
  background: var(--bg-dark);
  color: var(--text-light);
}

.section-darker {
  background: var(--bg-darker);
  color: var(--text-light);
}

.section h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section h2 .material-icons {
  color: var(--contrast);
  font-size: 2rem;
}

.section-dark h2 .material-icons,
.section-darker h2 .material-icons {
  color: var(--accent);
}

.section-intro {
  max-width: 720px;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  color: var(--text-dark);
}

.section-dark .card,
.section-darker .card {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-light);
  border: 1px solid rgba(186, 202, 204, 0.3);
}

.card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
}

.card .material-icons {
  color: var(--contrast);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.section-dark .card .material-icons,
.section-darker .card .material-icons {
  color: var(--accent);
}

.figure-block {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.figure-block img {
  width: 100%;
  object-fit: cover;
  min-height: 220px;
}

.figure-caption {
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  background: var(--bg-darker);
  color: var(--text-light);
}

.steps-list {
  counter-reset: step;
  list-style: none;
}

.steps-list li {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1.25rem;
}

.steps-list li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  background: var(--contrast);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.check-list {
  list-style: none;
}

.check-list li {
  padding: 0.5rem 0 0.5rem 2rem;
  position: relative;
}

.check-list li::before {
  content: "check_circle";
  font-family: "Material Icons";
  position: absolute;
  left: 0;
  color: var(--contrast);
  font-size: 1.25rem;
}

.section-dark .check-list li::before,
.section-darker .check-list li::before {
  color: var(--accent);
}

.timeline {
  border-left: 3px solid var(--contrast);
  padding-left: 1.5rem;
  margin-left: 0.5rem;
}

.timeline-item {
  margin-bottom: 1.5rem;
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -1.85rem;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border: 2px solid var(--bg-darker);
  border-radius: 50%;
}

.faq-item {
  border-bottom: 1px solid rgba(26, 37, 47, 0.15);
  padding: 1rem 0;
}

.faq-item summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item[open] summary .material-icons {
  transform: rotate(180deg);
}

.faq-item p {
  margin-top: 0.75rem;
  padding-left: 2rem;
}

.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: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--bg-light);
  color: var(--text-dark);
}

.events-table th {
  background: var(--bg-darker);
  color: var(--text-light);
}

.events-table tr:hover td {
  background: rgba(186, 202, 204, 0.25);
}

.contact-form {
  max-width: 560px;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--accent-dark);
  border-radius: var(--radius);
  font: inherit;
  background: #fff;
  color: var(--text-dark);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.checkbox-group input {
  width: auto;
  margin-top: 0.25rem;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
}

.site-footer {
  background: var(--bg-darker);
  color: var(--text-light);
  padding: 2.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-grid a {
  color: var(--accent);
  text-decoration: none;
}

.footer-grid a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(186, 202, 204, 0.3);
  padding-top: 1rem;
  font-size: 0.9rem;
  text-align: center;
  color: var(--accent);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.35rem;
}

.footer-links a {
  color: var(--accent);
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-bottom a[data-open-cookies] {
  color: var(--accent);
  margin-left: 0.35rem;
}

.compliance-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(186, 202, 204, 0.2);
  border-radius: var(--radius);
}

.policy-content {
  padding: 2rem 0 4rem;
}

.policy-content h1 {
  margin-bottom: 1rem;
}

.policy-content h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.35rem;
}

.policy-content p,
.policy-content ul {
  margin-bottom: 1rem;
}

.policy-content ul {
  padding-left: 1.5rem;
}

.thank-you-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  text-align: center;
}

.thank-you-page .material-icons {
  font-size: 4rem;
  color: var(--contrast);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: var(--bg-darker);
  color: var(--text-light);
  padding: 1.25rem;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform 0.35s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.cookie-settings {
  display: none;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(186, 202, 204, 0.3);
}

.cookie-settings.open {
  display: block;
}

.toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
}

.toggle-row input[type="checkbox"]:disabled {
  opacity: 0.7;
}

.quote-block {
  border-left: 4px solid var(--contrast);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: rgba(255, 255, 255, 0.5);
  font-style: italic;
}

.section-dark .quote-block {
  background: rgba(0, 0, 0, 0.2);
  border-left-color: var(--accent);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.tag {
  background: var(--bg-darker);
  color: var(--text-light);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.85rem;
}

.section-alt .tag {
  background: var(--bg-dark);
}

.split-block {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: start;
  margin-top: 1.5rem;
}

.split-block--reverse {
  grid-template-columns: 0.85fr 1.15fr;
}

.split-block__main h3 {
  font-size: 1.2rem;
  margin: 1.25rem 0 0.75rem;
  color: inherit;
}

.split-block__main h3:first-child {
  margin-top: 0;
}

.split-block__main p {
  margin-bottom: 1rem;
}

.split-block__aside {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.panel-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.35rem 1.5rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--contrast);
}

.section-alt .panel-card,
.section .panel-card {
  color: var(--text-dark);
}

.section-dark .panel-card,
.section-darker .panel-card {
  background: rgba(255, 255, 255, 0.07);
  border-left-color: var(--accent);
  color: var(--text-light);
}

.panel-card h3 {
  font-size: 1rem;
  margin-bottom: 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.panel-card .material-icons {
  font-size: 1.35rem;
  color: var(--contrast);
}

.section-dark .panel-card .material-icons,
.section-darker .panel-card .material-icons {
  color: var(--accent);
}

.panel-card p:last-child {
  margin-bottom: 0;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.stat-item {
  text-align: center;
  padding: 1rem 0.5rem;
  background: rgba(26, 37, 47, 0.06);
  border-radius: var(--radius);
}

.section-dark .stat-item,
.section-darker .stat-item {
  background: rgba(186, 202, 204, 0.12);
}

.stat-item strong {
  display: block;
  font-size: 1.5rem;
  color: var(--contrast);
  line-height: 1.2;
}

.section-dark .stat-item strong,
.section-darker .stat-item strong {
  color: var(--accent);
}

.stat-item span {
  font-size: 0.8rem;
  line-height: 1.3;
}

.dot-list {
  list-style: none;
  padding: 0;
}

.dot-list li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.35rem;
  border-bottom: 1px solid rgba(26, 37, 47, 0.08);
}

.dot-list li:last-child {
  border-bottom: none;
}

.dot-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--contrast);
}

.section-dark .dot-list li::before,
.section-darker .dot-list li::before {
  background: var(--accent);
}

.trust-strip {
  padding: 2rem 0;
  background: #fff;
  border-bottom: 1px solid rgba(26, 37, 47, 0.08);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.trust-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  background: var(--bg-light);
  border-radius: var(--radius);
  border: 1px solid rgba(186, 202, 204, 0.6);
}

.trust-item .material-icons {
  color: var(--contrast);
  font-size: 2rem;
  flex-shrink: 0;
}

.trust-item p {
  font-size: 0.95rem;
  margin: 0;
}

.highlight-bar {
  padding: 1rem 1.25rem;
  background: var(--bg-darker);
  color: var(--text-light);
  border-radius: var(--radius);
  font-size: 0.95rem;
}

.section-dark .highlight-bar,
.section-darker .highlight-bar {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(186, 202, 204, 0.25);
}

.section-alt .highlight-bar {
  background: var(--bg-dark);
}

@media (max-width: 900px) {
  .grid-2,
  .grid-3,
  .footer-grid,
  .split-block,
  .split-block--reverse {
    grid-template-columns: 1fr;
  }

  .stat-strip {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--bg-darker);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .main-nav.open {
    max-height: 420px;
    border-top: 1px solid rgba(186, 202, 204, 0.2);
  }

  .main-nav ul {
    flex-direction: column;
    padding: 1rem 1.25rem 1.5rem;
  }

  .main-nav a {
    display: block;
    padding: 0.6rem 0;
  }

  .hero {
    min-height: 360px;
  }

  .hero-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 320px) {
  body {
    font-size: 0.95rem;
  }

  .container {
    padding: 0 0.75rem;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .cookie-actions .btn {
    flex: 1 1 100%;
  }
}
