:root {
  --accent: #0091b5;
  --accent-dark: #006d8a;
  --accent-light: #00c4f0;
  --aqua: #7dd3fc;
  --sky: #e0f7fa;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.9);
  --bg-dark: #003d4d;
  --bg-deep: #002833;
  --bg-section: #004d61;
  --bg-section-alt: #e8f8fc;
  --bg-cream: #f0fbff;
  --bg-light: #d4f1f9;
  --text-primary: #ffffff;
  --text-secondary: #cce8f0;
  --text-muted: #8ec4d4;
  --text-on-light: #002833;
  --text-secondary-light: #004d61;
  --border: rgba(0, 145, 181, 0.35);
  --shadow: 0 12px 40px rgba(0, 61, 77, 0.3);
  --gloss: linear-gradient(180deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0) 50%);
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
  --header-height: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text-primary);
  background: var(--bg-deep);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--aqua);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--white);
}

h1, h2, h3, h4 {
  font-family: 'Segoe UI', Tahoma, sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-primary);
}

.section-light h1,
.section-light h2,
.section-light h3,
.section-light h4,
.section-cream h1,
.section-cream h2,
.section-cream h3,
.section-cream h4,
.section-aero h1,
.section-aero h2,
.section-aero h3,
.section-aero h4 {
  color: var(--text-on-light);
}

.section-light p,
.section-light li,
.section-cream p,
.section-cream li,
.section-aero p,
.section-aero li {
  color: var(--text-secondary-light);
}

h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.15rem, 3vw, 1.55rem); margin-bottom: 0.75rem; }

p { margin-bottom: 1rem; color: var(--text-secondary); }
ul, ol { margin-bottom: 1rem; padding-left: 1.5rem; color: var(--text-secondary); }
li { margin-bottom: 0.5rem; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.disclaimer-bar {
  background: var(--bg-section);
  border-bottom: 1px solid var(--border);
  padding: 0.6rem 1rem;
  font-size: 0.78rem;
  text-align: center;
  color: var(--text-secondary);
  line-height: 1.5;
}

.disclaimer-bar strong {
  color: var(--aqua);
  font-weight: 600;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0, 40, 51, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--header-height);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.logo-link img {
  height: 40px;
  width: auto;
}

.nav-toggle {
  display: none;
  background: rgba(0, 145, 181, 0.2);
  border: 1px solid var(--accent);
  color: var(--aqua);
  font-size: 1.25rem;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  cursor: pointer;
}

.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-nav a {
  color: var(--text-secondary);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--aqua);
  border-bottom-color: var(--accent-light);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero:hover .hero-bg img {
  transform: scale(1.12);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(0, 40, 51, 0.88) 0%, rgba(0, 109, 138, 0.75) 50%, rgba(0, 145, 181, 0.55) 100%);
}

.hero-bubbles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.hero-bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.4), rgba(0, 196, 240, 0.15));
  border: 1px solid rgba(255,255,255,0.3);
  animation: floatBubble 6s ease-in-out infinite;
}

.hero-bubble:nth-child(1) { width: 80px; height: 80px; top: 15%; left: 10%; animation-delay: 0s; }
.hero-bubble:nth-child(2) { width: 50px; height: 50px; top: 60%; left: 75%; animation-delay: 1.5s; }
.hero-bubble:nth-child(3) { width: 120px; height: 120px; top: 70%; left: 20%; animation-delay: 3s; opacity: 0.5; }
.hero-bubble:nth-child(4) { width: 40px; height: 40px; top: 25%; left: 85%; animation-delay: 2s; }

@keyframes floatBubble {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 6rem 1.25rem 4rem;
  max-width: 780px;
}

.hero-label {
  display: inline-block;
  background: var(--glass);
  color: var(--accent-dark);
  padding: 0.35rem 1rem;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
}

.hero h1 {
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero h1 span {
  color: var(--aqua);
  display: block;
}

.hero-text {
  font-size: 1.05rem;
  max-width: 620px;
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-card {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 4;
  background: var(--glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  max-width: 280px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.hero:hover .hero-card {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 145, 181, 0.35);
}

.hero-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-on-light);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 24px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(180deg, var(--accent-light) 0%, var(--accent) 50%, var(--accent-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(0, 145, 181, 0.5), inset 0 1px 0 rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 145, 181, 0.6);
  color: var(--white);
}

.btn-outline {
  background: rgba(255,255,255,0.15);
 
  border: 2px solid var(--aqua);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.25);
  color: var(--white);
  transform: translateY(-2px);
}

.section-dark {
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-dark) 100%);
  padding: 5rem 0;
  position: relative;
}

.section-accent {
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 50%, var(--accent-light) 100%);
  padding: 5rem 0;
  position: relative;
}

.section-accent::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gloss);
  pointer-events: none;
}

.section-light {
  background: var(--bg-section-alt);
  padding: 5rem 0;
}

.section-cream {
  background: var(--bg-cream);
  padding: 5rem 0;
}

.section-aero {
  background: linear-gradient(180deg, var(--sky) 0%, var(--bg-light) 100%);
  padding: 5rem 0;
  position: relative;
}

.section-aero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 60'%3E%3Cpath fill='%23002833' d='M0,30 Q300,60 600,30 T1200,30 L1200,60 L0,60 Z'/%3E%3C/svg%3E") no-repeat bottom;
  background-size: cover;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(0, 145, 181, 0.15);
  color: var(--accent);
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.section-dark .section-tag {
  background: rgba(0, 196, 240, 0.2);
  color: var(--aqua);
}

.section-accent .section-tag {
  background: rgba(255,255,255,0.25);
  color: var(--white);
}

.section-header {
  margin-bottom: 2.5rem;
}

.section-header.center {
  text-align: center;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.f-shape {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.f-shape:has(.image-frame-fit-height) {
  align-items: stretch;
}

.f-shape.reverse {
  direction: rtl;
}

.f-shape.reverse > * {
  direction: ltr;
}

.image-frame {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 3px solid rgba(255,255,255,0.5);
  position: relative;
}

.image-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: var(--gloss);
  z-index: 1;
  pointer-events: none;
}

.image-frame img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.image-frame-fit-height {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 280px;
}

.f-shape-side:has(.image-frame-fit-height) {
  align-self: stretch;
  display: flex;
}

.image-frame-fit-height img {
  width: auto;
  height: 100%;
  max-height: 520px;
  max-width: 100%;
  aspect-ratio: unset;
  object-fit: contain;
  object-position: center;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.stat-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.25rem;
  text-align: center;
  backdrop-filter: blur(8px);
}

.stat-item .number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--aqua);
  line-height: 1.2;
}

.stat-item .label {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.section-light .stat-item,
.section-aero .stat-item {
  background: var(--white);
  border-color: rgba(0, 145, 181, 0.2);
}

.section-light .stat-item .number,
.section-aero .stat-item .number {
  color: var(--accent);
}

.section-light .stat-item .label,
.section-aero .stat-item .label {
  color: var(--text-secondary-light);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.glass-card {
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.glass-card:hover {
  transform: translateY(-4px);
}

.section-dark .glass-card {
  background: rgba(0, 77, 97, 0.6);
  border-color: var(--border);
}

.glass-card i {
  font-size: 1.75rem;
  color: var(--accent-light);
  margin-bottom: 1rem;
}

.section-light .glass-card i,
.section-aero .glass-card i {
  color: var(--accent);
}

.phase-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 2rem;
}

.phase-timeline::before {
  content: '';
  position: absolute;
  left: 0.45rem;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent-light), var(--accent-dark));
  border-radius: 3px;
}

.phase-item {
  position: relative;
  padding: 1.5rem 0 1.5rem 2rem;
}

.phase-item::before {
  content: '';
  position: absolute;
  left: -1.55rem;
  top: 1.75rem;
  width: 14px;
  height: 14px;
  background: var(--accent-light);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--accent);
}

.phase-item h3 {
  color: var(--aqua);
}

.split-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.highlight-box {
  border-radius: 20px;
  padding: 1.75rem;
  border: 1px solid var(--border);
}

.highlight-box.neutral {
  background: rgba(0, 40, 51, 0.5);
}

.highlight-box.positive {
  background: rgba(0, 145, 181, 0.25);
  border-color: var(--accent-light);
}

.section-accent .highlight-box.neutral {
  background: rgba(0, 40, 51, 0.4);
}

.section-accent .highlight-box.positive {
  background: rgba(255, 255, 255, 0.2);
}

.highlight-box h3 i {
  color: var(--aqua);
  margin-right: 0.4rem;
}

.quote-block {
  background: rgba(255,255,255,0.1);
  border-left: 4px solid var(--aqua);
  padding: 1.25rem 1.75rem;
  margin: 2rem 0;
  font-style: italic;
  font-size: 1.05rem;
  border-radius: 0 12px 12px 0;
}

.section-light .quote-block,
.section-aero .quote-block {
  background: var(--white);
  border-left-color: var(--accent);
  color: var(--text-on-light);
}

.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  padding-left: 1.75rem;
  position: relative;
  margin-bottom: 0.75rem;
}

.check-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--accent-light);
}

.section-light .check-list li::before,
.section-aero .check-list li::before {
  color: var(--accent);
}

.numbered-steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
}

.numbered-steps li {
  counter-increment: step;
  padding: 1.25rem 1.25rem 1.25rem 4rem;
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
  margin-bottom: 1rem;
  position: relative;
  border: 1px solid var(--border);
}

.numbered-steps li::before {
  content: counter(step);
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  background: linear-gradient(180deg, var(--accent-light), var(--accent));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.section-light .numbered-steps li,
.section-aero .numbered-steps li {
  background: var(--white);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.section-light .faq-item,
.section-aero .faq-item {
  background: var(--white);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.section-light .faq-question,
.section-aero .faq-question {
  color: var(--text-on-light);
}

.faq-question i {
  color: var(--aqua);
  transition: transform var(--transition);
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
}

.events-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255,255,255,0.06);
  border-radius: 16px;
  overflow: hidden;
  color: var(--text-secondary);
}

.section-light .events-table,
.section-cream .events-table,
.section-aero .events-table,
.policy-content .events-table {
  background: var(--white);
  color: var(--text-secondary-light);
}

.events-table th,
.events-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.events-table td {
  color: inherit;
}

.events-table th {
  background: rgba(0, 145, 181, 0.2);
  color: var(--aqua);
  font-weight: 600;
}

.section-light .events-table th,
.section-cream .events-table th,
.section-aero .events-table th,
.policy-content .events-table th {
  background: var(--accent);
  color: var(--white);
}

.section-light .events-table td,
.section-cream .events-table td,
.section-aero .events-table td,
.policy-content .events-table td {
  color: var(--text-secondary-light);
}

.events-table tr:last-child td {
  border-bottom: none;
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
}

.safety-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
}

.section-light .safety-card,
.section-aero .safety-card {
  background: var(--white);
}

.safety-card i {
  font-size: 1.5rem;
  color: var(--accent-light);
  margin-bottom: 0.75rem;
}

.section-light .safety-card i,
.section-aero .safety-card i {
  color: var(--accent);
}

.page-hero {
  background: linear-gradient(135deg, var(--bg-deep) 0%, var(--accent-dark) 100%);
  padding: 4rem 0 3rem;
  text-align: center;
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gloss);
  pointer-events: none;
}

.page-hero h1 {
  margin-bottom: 0.75rem;
}

.page-hero p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-secondary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-block {
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
}

.section-light .contact-info-block {
  background: var(--white);
}

.contact-info-block i {
  color: var(--accent);
  width: 1.5rem;
}

.contact-info-block p {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.contact-form {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
  color: var(--text-on-light);
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid var(--bg-light);
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-on-light);
  background: var(--bg-cream);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.checkbox-group input {
  width: auto;
  margin-top: 0.3rem;
}

.checkbox-group label {
  font-weight: 400;
  font-size: 0.88rem;
  color: var(--text-secondary-light);
}

.map-wrap {
  border-radius: 16px;
  overflow: hidden;
  margin-top: 2rem;
  border: 2px solid var(--border);
}

.map-wrap iframe {
  width: 100%;
  height: 350px;
  display: block;
}

.map-placeholder {
  background: var(--bg-cream);
  border: 2px dashed var(--border);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
}

.map-placeholder p {
  color: var(--text-secondary-light);
  margin-bottom: 1rem;
  font-size: 0.92rem;
}

.map-placeholder i {
  color: var(--accent);
  margin-right: 0.35rem;
}

.map-alt {
  margin-top: 1rem;
  margin-bottom: 0;
  font-size: 0.88rem;
}

.footer-legal-bar {
  width: 100%;
  text-align: center;
  padding: 0.75rem 0 0;
  font-size: 0.82rem;
}

.footer-legal-bar a {
  color: var(--text-muted);
  margin: 0 0.5rem;
}

.footer-legal-bar a:hover {
  color: var(--aqua);
}

.site-footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-grid h4 {
  color: var(--aqua);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--aqua);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(0, 40, 51, 0.98);
  border-top: 2px solid var(--accent);
  padding: 1.25rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -8px 30px rgba(0,0,0,0.3);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}

.cookie-text {
  flex: 1;
  min-width: 260px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.cookie-text strong {
  color: var(--aqua);
  display: block;
  margin-bottom: 0.35rem;
}

.cookie-text a {
  color: var(--aqua);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-actions .btn {
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
}

.btn-decline {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

.btn-decline:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

.cookie-settings-panel {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  margin-top: 0;
}

.cookie-settings-panel.open {
  max-height: 400px;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.cookie-toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.cookie-toggle-row label {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.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: var(--bg-section);
  border-radius: 26px;
  transition: background var(--transition);
}

.toggle-slider::before {
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: transform var(--transition);
}

.toggle-switch input:checked + .toggle-slider {
  background: var(--accent);
}

.toggle-switch input:disabled + .toggle-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(22px);
}

.policy-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 3rem 1.25rem;
}

.policy-content h2 {
  margin-top: 2rem;
  color: var(--text-on-light);
}

.policy-content p,
.policy-content li {
  color: var(--text-secondary-light);
}

.success-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.25rem;
}

.success-box {
  background: var(--glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 3rem 2rem;
  max-width: 520px;
  box-shadow: var(--shadow);
}

.success-box i {
  font-size: 3.5rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.success-box h1 {
  margin-bottom: 1rem;
  color: var(--text-on-light);
}

.success-box p {
  margin-bottom: 2rem;
  color: var(--text-secondary-light);
}

.icon-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.icon-block {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 1.25rem;
  background: rgba(255,255,255,0.08);
  border-radius: 16px;
  border: 1px solid var(--border);
}

.icon-block i {
  font-size: 2rem;
  color: var(--accent-light);
  margin-bottom: 0.5rem;
}

.section-light .icon-block i,
.section-aero .icon-block i {
  color: var(--accent);
}

.week-block {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.section-light .week-block,
.section-aero .week-block {
  background: var(--white);
}

.week-block h3 {
  color: var(--aqua);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-light .week-block h3,
.section-aero .week-block h3 {
  color: var(--accent);
}

@media (max-width: 992px) {
  .f-shape,
  .split-highlight,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .f-shape.reverse {
    direction: ltr;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

  .hero-card {
    position: relative;
    bottom: auto;
    right: auto;
    margin: 2rem 1.25rem 0;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: rgba(0, 40, 51, 0.98);
    border-bottom: 1px solid var(--border);
    padding: 1rem;
    transform: translateY(-120%);
    opacity: 0;
    transition: transform var(--transition), opacity var(--transition);
    pointer-events: none;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .main-nav a {
    display: block;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border);
  }

  .hero-content {
    padding-top: 5rem;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-actions {
    flex-direction: column;
  }

  .cookie-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 320px) {
  html {
    font-size: 14px;
  }

  .container {
    padding: 0 0.75rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .btn {
    padding: 0.75rem 1.2rem;
    font-size: 0.88rem;
  }

  .glass-card,
  .week-block {
    padding: 1.25rem;
  }

  .events-table th,
  .events-table td {
    padding: 0.65rem 0.5rem;
    font-size: 0.82rem;
  }

  .contact-form {
    padding: 1.25rem;
  }

  .map-wrap iframe {
    height: 250px;
  }
}
