@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500&display=swap');

:root {
  --primary: #54478F;
  --primary-dark: #3d3268;
  --primary-light: #7a6bb5;
  --accent: #f0c75e;
  --accent-warm: #e8a87c;
  --bg-dark: #1a1528;
  --bg-light: #f7f5fc;
  --bg-cream: #faf8f3;
  --bg-mint: #eef6f2;
  --text-dark: #1a1528;
  --text-light: #ffffff;
  --text-muted: #4a4560;
  --border: rgba(84, 71, 143, 0.2);
  --shadow: 0 8px 32px rgba(26, 21, 40, 0.12);
  --radius: 12px;
  --transition: 0.3s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', 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-light);
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  font-weight: 600;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

.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.6rem 1rem;
  line-height: 1.5;
}

.site-header {
  background: var(--text-light);
  border-bottom: 2px solid var(--primary);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-link img {
  width: 42px;
  height: 42px;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}

.nav-desktop {
  display: flex;
  gap: 1.5rem;
}

.nav-desktop a {
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition);
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--primary);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--primary);
  font-size: 1.5rem;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--text-light);
  border-top: 1px solid var(--border);
  padding: 1rem 1.25rem 1.5rem;
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  color: var(--text-dark);
  padding: 0.75rem 0;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}

.nav-mobile a:last-child {
  border-bottom: none;
}

.nav-mobile a:hover,
.nav-mobile a.active {
  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(26, 21, 40, 0.75) 0%, rgba(84, 71, 143, 0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1.25rem;
  max-width: 800px;
}

.hero-content h1 {
  color: var(--text-light);
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 2rem;
}

.hero-page {
  min-height: 50vh;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: var(--accent);
  color: var(--text-dark);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: transparent;
  color: var(--text-light);
  border-color: var(--accent);
}

.btn-outline {
  background: transparent;
  color: var(--text-light);
  border-color: var(--text-light);
}

.btn-outline:hover {
  background: var(--text-light);
  color: var(--primary);
}

.btn-dark {
  background: var(--primary);
  color: var(--text-light);
  border-color: var(--primary);
}

.btn-dark:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--text-light);
}

section {
  padding: 4.5rem 0;
}

.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: rgba(255, 255, 255, 0.9);
}

.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: rgba(255, 255, 255, 0.92);
}

.section-cream {
  background: var(--bg-cream);
  color: var(--text-dark);
}

.section-mint {
  background: var(--bg-mint);
  color: var(--text-dark);
}

.section-light {
  background: var(--bg-light);
  color: var(--text-dark);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header .icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--primary-dark);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.section-dark .section-header .icon-wrap {
  background: var(--accent);
  color: var(--primary-dark);
}

.section-primary .section-header .icon-wrap {
  background: var(--accent);
  color: var(--primary-dark);
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.section-dark .section-label,
.section-primary .section-label {
  color: var(--accent);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.card {
  background: var(--text-light);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.card:hover {
  transform: translateY(-4px);
}

.section-dark .card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.section-primary .card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-dark .card-icon,
.section-primary .card-icon {
  color: var(--accent);
}

.card h3 {
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.section-dark .card h3 {
  color: var(--accent);
}

.section-primary .card h3 {
  color: var(--accent);
}

.image-block {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.image-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}

.image-accent {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 80px;
  height: 80px;
  background: var(--accent);
  border-radius: 50%;
  z-index: -1;
}

.stats-row {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.stat-item {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 1.5rem;
  background: rgba(84, 71, 143, 0.08);
  border-radius: var(--radius);
}

.section-dark .stat-item {
  background: rgba(255, 255, 255, 0.08);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
}

.section-dark .stat-number,
.section-primary .stat-number {
  color: var(--accent);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.section-dark .stat-label {
  color: rgba(255, 255, 255, 0.7);
}

.tip-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tip-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--text-light);
  border-radius: var(--radius);
  border-left: 4px solid var(--primary);
  box-shadow: var(--shadow);
}

.section-dark .tip-list li {
  background: rgba(255, 255, 255, 0.06);
  border-left-color: var(--accent);
}

.tip-list li i {
  font-size: 1.4rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.section-dark .tip-list li i {
  color: var(--accent);
}

.numbered-steps {
  counter-reset: step;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.numbered-steps li {
  counter-increment: step;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.numbered-steps li::before {
  content: counter(step);
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.section-dark .numbered-steps li::before {
  background: var(--accent);
  color: var(--text-dark);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--text-light);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.section-dark .faq-item {
  background: rgba(255, 255, 255, 0.06);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  gap: 1rem;
}

.section-dark .faq-question {
  color: var(--text-light);
}

.faq-question i {
  color: var(--primary);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.section-dark .faq-question i {
  color: var(--accent);
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.section-dark .faq-answer-inner {
  color: rgba(255, 255, 255, 0.8);
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.event-card {
  background: var(--text-light);
  border-radius: var(--radius);
  padding: 1.5rem;
  border-top: 4px solid var(--primary);
  box-shadow: var(--shadow);
}

.section-dark .event-card {
  background: rgba(255, 255, 255, 0.06);
  border-top-color: var(--accent);
}

.event-date {
  display: inline-block;
  background: var(--primary);
  color: var(--text-light);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.section-dark .event-date {
  background: var(--accent);
  color: var(--text-dark);
}

.event-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.event-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.section-dark .event-card p {
  color: rgba(255, 255, 255, 0.75);
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.safety-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.safety-item i {
  font-size: 1.8rem;
  color: var(--accent);
  flex-shrink: 0;
}

.quote-block {
  position: relative;
  padding: 2.5rem;
  background: var(--primary);
  color: var(--text-light);
  border-radius: var(--radius);
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.6;
}

.quote-block::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 5rem;
  color: var(--accent);
  opacity: 0.5;
  line-height: 1;
}

.split-feature {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.split-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}

.split-feature-text {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.tag {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  background: rgba(84, 71, 143, 0.12);
  color: var(--primary);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.section-dark .tag {
  background: rgba(240, 199, 94, 0.2);
  color: var(--accent);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-info-item i {
  font-size: 1.5rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  background: var(--text-light);
  color: var(--text-dark);
  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.9rem;
  color: var(--text-muted);
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 2rem;
}

.map-wrap iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}

.site-footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-links h4 {
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 1rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  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;
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 1.25rem 1.5rem;
  z-index: 9999;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 240px;
  font-size: 0.9rem;
  line-height: 1.6;
}

.cookie-text strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.35rem;
  color: var(--accent);
}

.footer-odr {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  text-decoration: underline;
}

.footer-odr:hover {
  color: var(--accent);
}

.cookie-text a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  font-family: 'DM Sans', sans-serif;
}

.cookie-btn-accept {
  background: var(--accent);
  color: var(--text-dark);
  border-color: var(--accent);
}

.cookie-btn-decline {
  background: transparent;
  color: var(--text-light);
  border-color: rgba(255, 255, 255, 0.4);
}

.cookie-btn-settings {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(26, 21, 40, 0.7);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.cookie-modal.open {
  display: flex;
}

.cookie-modal-content {
  background: var(--text-light);
  color: var(--text-dark);
  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.4rem;
}

.cookie-category h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
}

.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: white;
  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;
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
}

.policy-content h2 {
  color: var(--primary);
  margin: 2rem 0 1rem;
  font-size: 1.5rem;
}

.policy-content h3 {
  color: var(--primary-dark);
  margin: 1.5rem 0 0.75rem;
  font-size: 1.15rem;
}

.policy-content p,
.policy-content li {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.policy-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.policy-content ul li {
  margin-bottom: 0.5rem;
}

.success-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.25rem;
}

.success-icon {
  font-size: 4rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.asymmetric-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

.highlight-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--text-light);
  padding: 2rem;
  border-radius: var(--radius);
}

.highlight-box h3 {
  color: var(--accent);
  margin-bottom: 1rem;
}

.highlight-box p {
  color: rgba(255, 255, 255, 0.9);
}

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (max-width: 992px) {
  .grid-2,
  .grid-3,
  .contact-grid,
  .asymmetric-grid,
  .split-feature,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .split-feature-img img {
    min-height: 220px;
  }

  .safety-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  section {
    padding: 3rem 0;
  }

  .hero-page {
    min-height: 40vh;
  }

  .stats-row {
    flex-direction: column;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-actions {
    justify-content: stretch;
  }

  .cookie-btn {
    flex: 1;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 15px;
  }

  .container {
    padding: 0 1rem;
  }

  .hero-content {
    padding: 1.5rem 1rem;
  }

  .card {
    padding: 1.25rem;
  }

  .split-feature-text {
    padding: 1.5rem;
  }

  .quote-block {
    padding: 1.5rem;
    font-size: 1.1rem;
  }

  .map-wrap iframe {
    height: 280px;
  }

  .cookie-actions {
    flex-direction: column;
  }

  .logo-text {
    font-size: 0.85rem;
  }
}

@media (max-width: 320px) {
  html {
    font-size: 14px;
  }

  .header-inner {
    padding: 0.6rem 0.75rem;
  }

  .logo-link img {
    width: 34px;
    height: 34px;
  }

  .logo-text {
    font-size: 0.75rem;
  }

  .btn {
    padding: 0.7rem 1.25rem;
    font-size: 0.85rem;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .tip-list li {
    padding: 1rem;
    flex-direction: column;
    gap: 0.5rem;
  }

  .event-card {
    padding: 1.25rem;
  }

  .contact-info-item {
    flex-direction: column;
    gap: 0.5rem;
  }
}
