:root {
  --accent: #5CC0C2;
  --accent-dark: #3a9a9c;
  --bg-dark: #0a0e12;
  --bg-mid: #121820;
  --bg-light: #1a222c;
  --bg-alt: #0f161d;
  --text: #f0f4f6;
  --text-muted: #b8c4cc;
  --text-dark: #0a0e12;
  --border: rgba(92, 192, 194, 0.25);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --radius: 12px;
  --max: 1200px;
  --header-h: 72px;
  --transition: 0.3s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.65;
  min-width: 320px;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: #7dd4d6;
}

h1, h2, h3, h4 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.25;
  font-weight: 600;
}

h1 { font-size: clamp(1.75rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); margin-bottom: 0.75rem; }

p { margin-bottom: 1rem; }

ul, ol { margin-bottom: 1rem; padding-left: 1.35rem; }
li { margin-bottom: 0.5rem; }

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.disclaimer-bar {
  background: #1e2830;
  color: #d8e2e8;
  font-size: 0.82rem;
  line-height: 1.5;
  padding: 0.65rem 1rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.disclaimer-bar strong {
  color: #fff;
}

.disclaimer-bar a {
  color: var(--accent);
  text-decoration: underline;
  margin: 0 0.15rem;
}

.footer-about,
.footer-legal {
  margin-top: 0.75rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

.transparency-box {
  background: rgba(92, 192, 194, 0.1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.transparency-box h3 {
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.page-compliance {
  font-size: 0.88rem;
  color: var(--text-muted);
  background: rgba(92, 192, 194, 0.08);
  border-left: 3px solid var(--accent);
  padding: 0.75rem 1rem;
  margin: 0 auto 1.5rem;
  max-width: var(--max);
  width: min(100% - 2rem, var(--max));
}

.page-compliance a {
  color: var(--accent);
}

.footer-compliance {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
  margin-top: 1rem;
  text-align: center;
}

.footer-compliance p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.footer-compliance-links {
  font-size: 0.85rem;
}

.footer-compliance-links a,
.footer-cookie-link {
  color: var(--accent);
  text-decoration: underline;
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  padding: 0;
}

.header-brand-name {
  display: none;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-left: 0.5rem;
}

@media (min-width: 900px) {
  .header-brand-name {
    display: block;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 14, 18, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-link img {
  height: 44px;
  width: 44px;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 0.45rem 0.65rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.25rem;
}

.main-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
  padding: 0;
  margin: 0;
}

.main-nav a {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 14, 18, 0.55) 0%, rgba(10, 14, 18, 0.88) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 6rem 1.5rem 4rem;
  max-width: 820px;
}

.hero-content h1 {
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  color: #e8f0f2;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  margin-bottom: 1.75rem;
}

.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  background: var(--accent);
  color: var(--text-dark);
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  font-size: 0.95rem;
}

.btn:hover {
  background: #7dd4d6;
  color: var(--text-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--text-dark);
}

.section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.section-dark {
  background: var(--bg-dark);
  color: var(--text);
}

.section-mid {
  background: var(--bg-mid);
  color: var(--text);
}

.section-light {
  background: var(--bg-light);
  color: var(--text);
}

.section-accent {
  background: linear-gradient(135deg, #0d3d3e 0%, #0a2a2b 100%);
  color: #e8f6f6;
}

.section-accent h2,
.section-accent h3 {
  color: #fff;
}

.section-teal {
  background: var(--accent);
  color: var(--text-dark);
}

.section-teal h2,
.section-teal h3,
.section-teal a {
  color: var(--text-dark);
}

.section-teal a:hover {
  color: #0a0e12;
  text-decoration: underline;
}

.section-intro {
  max-width: 720px;
  margin-bottom: 2rem;
}

.section-intro p {
  color: inherit;
  opacity: 0.92;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color var(--transition), transform var(--transition);
}

.card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

a.card {
  color: inherit;
  text-decoration: none;
  display: block;
}

a.card:hover {
  color: inherit;
}

.card i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
  display: block;
}

.section-teal .card {
  background: rgba(10, 14, 18, 0.12);
  border-color: rgba(10, 14, 18, 0.2);
}

.section-teal .card i {
  color: var(--text-dark);
}

.image-block {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-block img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.caption {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.section-accent .caption {
  color: #b8e8e9;
}

.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);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list i {
  color: var(--accent);
  font-size: 1.35rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.section-teal .feature-list i {
  color: var(--text-dark);
}

.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
}

.steps li {
  position: relative;
  padding-left: 3.5rem;
  margin-bottom: 1.5rem;
  counter-increment: step;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2.25rem;
  height: 2.25rem;
  background: var(--accent);
  color: var(--text-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
}

.timeline {
  border-left: 3px solid var(--accent);
  padding-left: 1.5rem;
  margin-left: 0.5rem;
}

.timeline-item {
  margin-bottom: 1.75rem;
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -1.85rem;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  border: 2px solid var(--bg-mid);
}

.quote-block {
  border-left: 4px solid var(--accent);
  padding: 1rem 1.5rem;
  background: rgba(92, 192, 194, 0.08);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  margin: 1.5rem 0;
}

.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.stat-box {
  flex: 1 1 140px;
  text-align: center;
  padding: 1.25rem;
  background: rgba(92, 192, 194, 0.12);
  border-radius: var(--radius);
}

.stat-box strong {
  display: block;
  font-size: 1.75rem;
  color: var(--accent);
  font-family: Georgia, serif;
}

.section-teal .stat-box {
  background: rgba(10, 14, 18, 0.15);
}

.section-teal .stat-box strong {
  color: var(--text-dark);
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: rgba(255, 255, 255, 0.03);
  border: none;
  color: var(--text);
  padding: 1rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-question i {
  color: var(--accent);
  transition: transform var(--transition);
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 1.25rem 1rem;
  color: var(--text-muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.calendar-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.calendar-table th,
.calendar-table td {
  border: 1px solid var(--border);
  padding: 0.65rem;
  text-align: left;
}

.calendar-table th {
  background: rgba(92, 192, 194, 0.15);
  color: var(--text);
}

.calendar-table tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}

.guidelines-box {
  background: rgba(92, 192, 194, 0.1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.guidelines-box h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.guidelines-box i {
  color: var(--accent);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 500;
  color: var(--text);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-dark);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--accent);
  border-color: var(--accent);
}

.checkbox-row {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.checkbox-row input {
  width: auto;
  margin-top: 0.25rem;
}

.contact-info p {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

.contact-info i {
  color: var(--accent);
  font-size: 1.25rem;
  margin-top: 0.15rem;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 1.5rem;
}

.map-wrap iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
}

.site-footer {
  background: #06090c;
  padding: 2.5rem 0 1.5rem;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-grid h4 {
  color: var(--accent);
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.4rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #121820;
  border-top: 2px solid var(--accent);
  padding: 1.25rem;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.5);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.cookie-inner p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-actions .btn {
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
}

.cookie-settings {
  display: none;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.cookie-settings.open {
  display: block;
}

.cookie-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
}

.cookie-toggle label {
  font-size: 0.9rem;
}

.toggle-switch {
  position: relative;
  width: 48px;
  height: 26px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: #3a4550;
  border-radius: 26px;
  transition: 0.3s;
}

.toggle-slider::before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: 0.3s;
}

.toggle-switch input:checked + .toggle-slider {
  background: var(--accent);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(22px);
}

.toggle-switch input:disabled + .toggle-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.policy-content {
  max-width: 800px;
}

.policy-content h2 {
  margin-top: 2rem;
}

.policy-content h3 {
  margin-top: 1.25rem;
}

.policy-content code {
  background: rgba(92, 192, 194, 0.15);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-size: 0.9em;
  color: var(--accent);
}

.success-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1rem;
}

.success-page i {
  font-size: 4rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.page-hero {
  padding: 5rem 0 3rem;
  background: var(--bg-mid);
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  margin-bottom: 0.5rem;
}

.page-hero p {
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
}

.tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(92, 192, 194, 0.2);
  color: var(--accent);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.section-teal .tag {
  background: rgba(10, 14, 18, 0.2);
  color: var(--text-dark);
}

@media (max-width: 900px) {
  .grid-2,
  .grid-3,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--bg-mid);
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .main-nav.open {
    max-height: 420px;
    overflow-y: auto;
  }

  .main-nav ul {
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0;
  }

  .main-nav li {
    border-bottom: 1px solid var(--border);
  }

  .main-nav a {
    display: block;
    padding: 0.85rem 0;
  }

  .hero {
    min-height: 85vh;
  }

  .cookie-actions {
    flex-direction: column;
  }

  .cookie-actions .btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 320px) {
  html {
    font-size: 93.75%;
  }

  .container {
    width: min(100% - 1rem, var(--max));
  }

  .header-inner {
    gap: 0.5rem;
  }

  .logo-link img {
    height: 38px;
    width: 38px;
  }

  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
  }
}
