@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@400;700&display=swap');

:root {
  --lavender: #c3c2de;
  --lavender-light: #f5f4fa;
  --lavender-soft: #ebeaf5;
  --lavender-mid: #dcdcf0;
  --lavender-dark: #5c5b78;
  --bg-white: #ffffff;
  --bg-soft: #f8f7fc;
  --text-dark: #1a1830;
  --text-muted: #4a4868;
  --text-light: #ffffff;
  --accent: #6b5b95;
  --gold: #9a7209;
  --gold-light: #b8860b;
  --contrast-icon: #6b5b95;
  --section-alt: #ebeaf5;
  --border-ornate: #b8b7d4;
  --border-light: #d8d7ea;
  --shadow: rgba(26, 24, 48, 0.08);
  --shadow-md: rgba(26, 24, 48, 0.12);
  --max-width: 1200px;
  --header-height: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Lato', sans-serif;
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.25;
  font-weight: 700;
  color: var(--text-dark);
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--gold-light);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.ai-notice-bar {
  background: var(--lavender-mid);
  color: var(--text-muted);
  text-align: center;
  padding: 0.45rem 1rem;
  font-size: 0.78rem;
  line-height: 1.45;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.ai-notice-bar i {
  color: var(--accent);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.ai-notice-bar a {
  color: var(--accent);
  text-decoration: underline;
}

.ai-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin: 1.5rem 0 2rem;
}

.ai-summary-item {
  padding: 1.25rem;
  border: 1px solid var(--border-light);
  background: var(--bg-white);
  box-shadow: 0 2px 12px var(--shadow);
}

.ai-summary-item i {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
  display: block;
}

.ai-summary-item h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--accent);
}

.ai-summary-item p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin: 0;
}

.ai-inline-notice {
  padding: 1.25rem 1.5rem;
  background: var(--lavender-soft);
  border-left: 4px solid var(--accent);
  margin: 1.5rem 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.ai-inline-notice strong {
  color: var(--text-dark);
}

.disclaimer-bar {
  background: var(--lavender-soft);
  color: var(--text-muted);
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.78rem;
  line-height: 1.4;
  border-bottom: 1px solid var(--border-light);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-white);
  border-bottom: 3px double var(--gold-light);
  height: var(--header-height);
  box-shadow: 0 2px 12px var(--shadow);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-link img {
  height: 44px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.main-nav a {
  color: var(--text-dark);
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 0.25rem 0;
  border-bottom: 1px solid transparent;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--accent);
  border-bottom-color: var(--gold-light);
}

.menu-toggle {
  display: none;
  background: var(--bg-white);
  border: 2px solid var(--accent);
  color: var(--accent);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  line-height: 1;
}

.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(255, 255, 255, 0.88) 0%, rgba(195, 194, 222, 0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 820px;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--text-dark);
  margin-bottom: 1rem;
  text-shadow: none;
}

.hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.hero-inner-page {
  min-height: 55vh;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 700;
  border: 2px solid var(--gold-light);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.25s;
  text-align: center;
}

.btn-primary {
  background: var(--gold-light);
  color: var(--bg-white);
}

.btn-primary:hover {
  background: transparent;
  color: var(--gold-light);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--bg-white);
}

section {
  padding: 4rem 1rem;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-light {
  background: var(--bg-white);
  color: var(--text-dark);
}

.section-dark {
  background: var(--section-alt);
  color: var(--text-dark);
}

.section-lavender {
  background: var(--lavender-mid);
  color: var(--text-dark);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.75rem;
  color: var(--text-dark);
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold-light);
  margin-top: 0.5rem;
}

.section-intro {
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 780px;
  color: var(--text-muted);
}

.ornate-frame {
  border: 2px solid var(--border-ornate);
  outline: 1px solid var(--gold-light);
  outline-offset: 4px;
  padding: 1.5rem;
  background: var(--bg-white);
  box-shadow: 0 4px 16px var(--shadow);
}

.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 {
  padding: 1.75rem;
  border: 1px solid var(--border-light);
  background: var(--bg-white);
  color: var(--text-dark);
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px var(--shadow);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px var(--shadow-md);
}

.card-icon {
  font-size: 2rem;
  color: var(--contrast-icon);
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: var(--accent);
}

.card p {
  color: var(--text-muted);
}

.image-block img {
  width: 100%;
  border: 3px double var(--gold-light);
  box-shadow: 0 8px 24px var(--shadow-md);
}

.image-caption {
  font-style: italic;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  color: var(--text-muted);
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 0.75rem 0 0.75rem 2rem;
  position: relative;
  border-bottom: 1px dotted var(--border-ornate);
  color: var(--text-muted);
}

.feature-list li::before {
  content: '\F633';
  font-family: 'bootstrap-icons';
  position: absolute;
  left: 0;
  color: var(--gold-light);
  font-size: 1rem;
}

.numbered-steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
}

.numbered-steps li {
  counter-increment: step;
  padding: 1.25rem 1.25rem 1.25rem 4rem;
  position: relative;
  margin-bottom: 1rem;
  background: var(--bg-white);
  border-left: 3px solid var(--gold-light);
  border: 1px solid var(--border-light);
  border-left: 3px solid var(--gold-light);
  color: var(--text-muted);
  box-shadow: 0 2px 8px var(--shadow);
}

.numbered-steps li strong {
  color: var(--text-dark);
}

.numbered-steps li::before {
  content: counter(step);
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold-light);
}

.quote-block {
  border-left: 4px solid var(--gold-light);
  padding: 1.5rem 2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  background: var(--bg-white);
  margin: 2rem 0;
  color: var(--text-muted);
  box-shadow: 0 2px 12px var(--shadow);
}

.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gold-light);
}

.timeline-item {
  position: relative;
  padding-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.timeline-item h3 {
  color: var(--accent);
}

.timeline-item p {
  color: var(--text-muted);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.45rem;
  top: 0.4rem;
  width: 12px;
  height: 12px;
  background: var(--gold-light);
  border-radius: 50%;
  border: 2px solid var(--bg-white);
  box-shadow: 0 0 0 2px var(--gold-light);
}

.faq-item {
  border: 1px solid var(--border-light);
  margin-bottom: 0.75rem;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 2px 8px var(--shadow);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: var(--bg-white);
  color: var(--text-dark);
  border: none;
  padding: 1rem 1.25rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question i {
  color: var(--contrast-icon);
  transition: transform 0.3s;
}

.faq-question.active i {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 1rem 1.25rem;
  background: var(--lavender-soft);
  color: var(--text-muted);
  font-size: 0.95rem;
  border-top: 1px solid var(--border-light);
}

.faq-answer.open {
  display: block;
}

.events-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  background: var(--bg-white);
  box-shadow: 0 2px 12px var(--shadow);
}

.events-table th,
.events-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border: 1px solid var(--border-light);
  color: var(--text-muted);
}

.events-table th {
  background: var(--lavender-soft);
  color: var(--accent);
  font-family: 'Cormorant Garamond', serif;
}

.events-table tr:nth-child(even) {
  background: var(--bg-soft);
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.safety-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--bg-white);
  color: var(--text-dark);
  border: 1px solid var(--border-light);
  box-shadow: 0 2px 12px var(--shadow);
}

.safety-item p {
  color: var(--text-muted);
}

.safety-item i {
  font-size: 1.5rem;
  color: var(--contrast-icon);
  flex-shrink: 0;
}

.contact-section {
  background: var(--bg-soft);
  color: var(--text-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.contact-info-block {
  padding: 1.5rem;
}

.contact-info-block p {
  color: var(--text-muted);
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
  color: var(--text-muted);
}

.contact-info-item i {
  font-size: 1.3rem;
  color: var(--contrast-icon);
  margin-top: 0.2rem;
}

.contact-form {
  background: var(--bg-white);
  padding: 2rem;
  border: 2px solid var(--border-ornate);
  box-shadow: 0 4px 20px var(--shadow-md);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 700;
  color: var(--accent);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-ornate);
  background: var(--bg-white);
  color: var(--text-dark);
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  border-radius: 2px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: 2px solid var(--gold-light);
  border-color: var(--gold-light);
}

.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.9rem;
  color: var(--text-muted);
}

.map-container {
  margin-top: 2rem;
  border: 3px double var(--gold-light);
  overflow: hidden;
  box-shadow: 0 4px 16px var(--shadow);
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: 0;
  display: block;
}

.site-footer {
  background: var(--lavender-soft);
  color: var(--text-muted);
  padding: 2.5rem 1rem 1.5rem;
  border-top: 3px double var(--gold-light);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
}

.footer-brand img {
  height: 44px;
  width: auto;
}

.footer-brand p {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.footer-links h4 {
  color: var(--text-dark);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.footer-links ul {
  list-style: none;
}

.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 {
  max-width: var(--max-width);
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-compliance {
  margin-top: 0.75rem;
  font-size: 0.78rem;
  line-height: 1.5;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.footer-compliance a {
  color: var(--accent);
}

.form-legal-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 0.5rem;
}

.policy-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 3rem 1rem 4rem;
  background: var(--bg-white);
}

.policy-content h1 {
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.policy-content h2 {
  font-size: 1.5rem;
  margin: 2rem 0 0.75rem;
  color: var(--accent);
}

.policy-content p,
.policy-content li {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.policy-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.policy-meta {
  font-size: 0.85rem;
  color: var(--lavender-dark);
  margin-bottom: 2rem;
}

.success-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1rem;
  background: var(--lavender-mid);
}

.success-content {
  max-width: 600px;
}

.success-content i {
  font-size: 4rem;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.success-content h1 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.success-content p {
  color: var(--text-muted);
}

.success-page .btn-outline {
  color: var(--accent);
  border-color: var(--accent);
}

.success-page .btn-outline:hover {
  background: var(--accent);
  color: var(--bg-white);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-white);
  color: var(--text-dark);
  padding: 1.25rem;
  z-index: 9999;
  border-top: 3px solid var(--gold-light);
  box-shadow: 0 -4px 24px var(--shadow-md);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.cookie-text {
  flex: 1;
  min-width: 240px;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.cookie-banner-title {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
  color: var(--text-dark);
  font-family: 'Cormorant Garamond', Georgia, serif;
}

.cookie-text p {
  margin: 0;
}

.cookie-settings-note {
  width: 100%;
  margin: 0.75rem 0 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.cookie-text a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-btn {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  border-radius: 2px;
  transition: all 0.2s;
}

.cookie-btn-accept {
  background: var(--gold-light);
  color: var(--bg-white);
  border-color: var(--gold-light);
  font-weight: 700;
}

.cookie-btn-accept:hover {
  background: transparent;
  color: var(--gold-light);
}

.cookie-btn-reject {
  border: 2px solid var(--accent);
  font-weight: 700;
  color: var(--accent);
}

.cookie-btn-reject:hover {
  background: var(--accent);
  color: var(--bg-white);
}

.cookie-btn-settings {
  font-weight: 700;
}

.cookie-btn-settings:hover {
  background: var(--accent);
  color: var(--bg-white);
}

.cookie-settings-panel {
  display: none;
  width: 100%;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

.cookie-settings-panel.open {
  display: block;
}

.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px dotted var(--border-light);
}

.cookie-category label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.toggle-switch {
  position: relative;
  width: 48px;
  height: 24px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--border-ornate);
  border-radius: 24px;
  cursor: pointer;
  transition: 0.3s;
}

.toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  bottom: 3px;
  background: var(--bg-white);
  border-radius: 50%;
  transition: 0.3s;
  box-shadow: 0 1px 3px var(--shadow-md);
}

.toggle-switch input:checked + .toggle-slider {
  background: var(--gold-light);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(24px);
}

.toggle-switch input:disabled + .toggle-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.tag {
  padding: 0.35rem 0.85rem;
  background: var(--lavender-soft);
  color: var(--accent);
  font-size: 0.8rem;
  border: 1px solid var(--border-ornate);
  border-radius: 2px;
}

.stat-row {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.stat-item {
  text-align: center;
  flex: 1;
  min-width: 120px;
  padding: 1.25rem;
  background: var(--bg-white);
  color: var(--text-dark);
  border: 1px solid var(--border-light);
  box-shadow: 0 2px 12px var(--shadow);
}

.stat-item .stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  display: block;
}

.stat-item .stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.section-dark p,
.section-lavender p {
  color: var(--text-muted);
}

.ornate-frame h3 {
  color: var(--accent);
}

@media (max-width: 768px) {
  .ai-summary-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 320px) {
  .ai-notice-bar {
    font-size: 0.7rem;
    padding: 0.4rem 0.5rem;
  }
}

@media (max-width: 900px) {
  .grid-2,
  .grid-3,
  .contact-grid,
  .footer-inner,
  .safety-grid {
    grid-template-columns: 1fr;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--bg-white);
    flex-direction: column;
    padding: 1rem;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    border-bottom: 2px solid var(--gold-light);
    box-shadow: 0 8px 24px var(--shadow-md);
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .main-nav a {
    display: block;
    width: 100%;
    padding: 0.85rem 0.5rem;
    border-bottom: 1px solid var(--border-light);
  }

  .menu-toggle {
    display: block;
  }

  .stat-row {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  section {
    padding: 2.5rem 0.75rem;
  }

  .hero-content h1 {
    font-size: 1.75rem;
  }

  .ornate-frame {
    padding: 1rem;
    outline-offset: 2px;
  }

  .contact-form {
    padding: 1.25rem;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
    text-align: center;
  }

  .map-container iframe {
    height: 280px;
  }

  .footer-inner {
    gap: 1.5rem;
  }
}

@media (max-width: 320px) {
  html {
    font-size: 14px;
  }

  .header-inner {
    padding: 0 0.5rem;
  }

  .logo-link img {
    height: 36px;
  }

  .disclaimer-bar {
    font-size: 0.7rem;
    padding: 0.4rem 0.5rem;
  }

  .hero-content {
    padding: 1.5rem 0.75rem;
  }

  .btn {
    padding: 0.6rem 1.25rem;
    font-size: 1rem;
    width: 100%;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .numbered-steps li {
    padding-left: 3rem;
  }

  .form-group input,
  .form-group textarea {
    font-size: 0.9rem;
  }
}
