:root {
  --primary: #f6b4da;
  --primary-dark: #e894c4;
  --accent: #2d1b3d;
  --accent-light: #4a2d5e;
  --text-dark: #1a1224;
  --text-light: #ffffff;
  --text-muted: #4a3f52;
  --bg-light: #fff5fa;
  --bg-dark: #2d1b3d;
  --bg-alt: #fce8f3;
  --card-shadow: 0 4px 20px rgba(45, 27, 61, 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: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  line-height: 1.7;
  background: var(--bg-light);
  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: var(--primary-dark);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.disclaimer-bar {
  background: var(--accent);
  color: var(--text-light);
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  line-height: 1.4;
}

@media (max-width: 480px) {
  .disclaimer-bar {
    font-size: 0.72rem;
    padding: 0.45rem 0.75rem;
  }
}

header {
  background: var(--text-light);
  box-shadow: var(--card-shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.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.75rem;
}

.logo-link img {
  width: 48px;
  height: 48px;
}

.logo-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.2;
}

.nav-desktop {
  display: flex;
  gap: 1.5rem;
}

.nav-desktop a {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition), color var(--transition);
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--accent);
  border-bottom-color: var(--primary);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--accent);
  font-size: 1.75rem;
  line-height: 1;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--text-light);
  border-top: 1px solid var(--primary);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition), padding var(--transition);
}

.nav-mobile.open {
  max-height: 500px;
  padding: 1rem 1.25rem;
}

.nav-mobile a {
  display: block;
  padding: 0.75rem 0;
  color: var(--text-dark);
  font-weight: 500;
  border-bottom: 1px solid var(--bg-alt);
}

.nav-mobile a:hover,
.nav-mobile a.active {
  color: var(--accent);
}

.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: rgba(45, 27, 61, 0.65);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1.25rem;
  max-width: 800px;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--primary);
  margin-bottom: 2rem;
}

.hero-inner {
  min-height: 60vh;
}

.hero-inner::before {
  background: rgba(45, 27, 61, 0.55);
}

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--primary);
  color: var(--accent);
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(246, 180, 218, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--accent);
  transform: translateY(-2px);
}

section {
  padding: 4rem 0;
}

.section-dark {
  background: var(--bg-dark);
  color: var(--text-light);
}

.section-dark h2,
.section-dark h3 {
  color: var(--primary);
}

.section-dark p,
.section-dark li {
  color: rgba(255, 255, 255, 0.9);
}

.section-alt {
  background: var(--bg-alt);
}

.section-primary {
  background: var(--primary);
  color: var(--accent);
}

.section-primary h2,
.section-primary h3 {
  color: var(--accent);
}

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-title p {
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto;
}

.section-dark .section-title p {
  color: rgba(255, 255, 255, 0.75);
}

.card {
  background: var(--text-light);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  padding: 1.75rem;
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(45, 27, 61, 0.18);
}

.section-dark .card {
  background: var(--accent-light);
}

.section-dark .card h3 {
  color: var(--primary);
}

.section-dark .card p {
  color: rgba(255, 255, 255, 0.85);
}

.card-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-dark .card-icon {
  color: var(--primary);
}

.card h3 {
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  align-items: center;
}

.split-content h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-dark .split-content h2 {
  color: var(--primary);
}

.split-content p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.section-dark .split-content p {
  color: rgba(255, 255, 255, 0.88);
}

.split-image img {
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  width: 100%;
  object-fit: cover;
  max-height: 400px;
}

.feature-list {
  margin: 1.5rem 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  color: var(--text-muted);
}

.section-dark .feature-list li {
  color: rgba(255, 255, 255, 0.88);
}

.feature-list li i {
  color: var(--primary-dark);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.section-dark .feature-list li i {
  color: var(--primary);
}

.numbered-list {
  counter-reset: item;
}

.numbered-list li {
  counter-increment: item;
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1.25rem;
  color: var(--text-dark);
}

.numbered-list li strong {
  color: var(--text-dark);
}

.section-dark .numbered-list li,
.section-dark .numbered-list li strong {
  color: rgba(255, 255, 255, 0.9);
}

.numbered-list li::before {
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  background: var(--primary);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.badge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}

.badge-item {
  text-align: center;
  padding: 1.25rem;
  background: var(--text-light);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
}

.badge-item i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.badge-item span {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}

.wheel-section {
  text-align: center;
}

.wheel-container {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 2rem auto;
}

.wheel {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(
    var(--primary) 0deg 60deg,
    var(--accent) 60deg 120deg,
    var(--primary-dark) 120deg 180deg,
    var(--accent-light) 180deg 240deg,
    var(--primary) 240deg 300deg,
    var(--accent) 300deg 360deg
  );
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 3s cubic-bezier(0.17, 0.67, 0.12, 0.99);
  box-shadow: var(--card-shadow);
}

.wheel-center {
  width: 80px;
  height: 80px;
  background: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--accent);
  font-size: 0.85rem;
  z-index: 2;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.wheel-result {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: var(--text-light);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--accent);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
}

.calendar-day {
  background: var(--text-light);
  border-radius: var(--radius);
  padding: 0.75rem 0.5rem;
  text-align: center;
  box-shadow: var(--card-shadow);
  font-size: 0.8rem;
}

.calendar-day .day-num {
  font-weight: 700;
  color: var(--accent);
  font-size: 1rem;
  display: block;
  margin-bottom: 0.25rem;
}

.calendar-day .day-task {
  color: var(--text-muted);
  font-size: 0.72rem;
  line-height: 1.3;
}

.calendar-day.today {
  background: var(--primary);
}

.calendar-day.today .day-num,
.calendar-day.today .day-task {
  color: var(--accent);
}

.faq-item {
  background: var(--text-light);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  box-shadow: var(--card-shadow);
  overflow: hidden;
}

.section-dark .faq-item {
  background: var(--accent-light);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.section-dark .faq-question {
  color: var(--primary);
}

.faq-question i {
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition);
}

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
}

.section-dark .faq-answer-inner {
  color: rgba(255, 255, 255, 0.85);
}

.event-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.event-date {
  background: var(--primary);
  color: var(--accent);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  text-align: center;
  flex-shrink: 0;
  min-width: 70px;
}

.event-date .month {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.event-date .day {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.event-info h3 {
  font-size: 1.05rem;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.event-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0.5rem;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--primary);
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
  padding-left: 1.5rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -1.65rem;
  top: 0.35rem;
  width: 14px;
  height: 14px;
  background: var(--primary);
  border-radius: 50%;
  border: 3px solid var(--text-light);
}

.section-dark .timeline-item::before {
  border-color: var(--bg-dark);
}

.timeline-item h3 {
  color: var(--accent);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.section-dark .timeline-item h3 {
  color: var(--primary);
}

.timeline-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.section-dark .timeline-item p {
  color: rgba(255, 255, 255, 0.85);
}

.contact-form {
  background: var(--text-light);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--card-shadow);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
  color: var(--accent);
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--bg-alt);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color var(--transition);
  background: var(--bg-light);
  color: var(--text-dark);
}

.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;
  align-items: flex-start;
  gap: 0.75rem;
}

.checkbox-group input {
  width: auto;
  margin-top: 0.3rem;
  flex-shrink: 0;
}

.checkbox-group label {
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.contact-info-block {
  background: var(--accent);
  color: var(--text-light);
  border-radius: var(--radius);
  padding: 2rem;
}

.contact-info-block h3 {
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.contact-info-item i {
  font-size: 1.3rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.contact-info-item a {
  color: var(--primary);
}

.contact-info-item a:hover {
  color: var(--text-light);
}

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  margin-top: 2rem;
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: 0;
}

footer {
  background: var(--accent);
  color: var(--text-light);
  padding: 2.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col h4 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  padding: 0.3rem 0;
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: var(--primary);
}

.footer-col p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.footer-contact {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.footer-contact a {
  display: inline;
  padding: 0;
  color: var(--primary);
}

.footer-disclaimer {
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--accent);
  color: var(--text-light);
  padding: 1.25rem;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform var(--transition);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-text {
  flex: 1;
  min-width: 250px;
  font-size: 0.9rem;
}

.cookie-text a {
  color: var(--primary);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-buttons .btn {
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
}

.btn-cookie-accept {
  background: var(--primary);
  color: var(--accent);
}

.btn-cookie-reject {
  background: transparent;
  color: var(--text-light);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-cookie-reject:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-cookie-settings {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.cookie-settings-panel {
  display: none;
  width: 100%;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.cookie-settings-panel.show {
  display: block;
}

.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-category label {
  font-size: 0.9rem;
}

.cookie-category small {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
}

.toggle-switch {
  position: relative;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 26px;
  transition: background var(--transition);
}

.toggle-slider::before {
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: var(--text-light);
  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;
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1.25rem;
}

.policy-content h1 {
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.policy-content h2 {
  color: var(--accent);
  margin: 2rem 0 1rem;
  font-size: 1.3rem;
}

.policy-content p,
.policy-content li {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.policy-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.success-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.25rem;
}

.success-content i {
  font-size: 4rem;
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
}

.success-content h1 {
  color: var(--accent);
  margin-bottom: 1rem;
}

.success-content p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.highlight-box {
  background: var(--primary);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.highlight-box p {
  color: var(--accent);
  margin-bottom: 0;
}

.quote-block {
  border-left: 4px solid var(--primary);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--bg-alt);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.section-dark .quote-block {
  background: var(--accent-light);
  border-left-color: var(--primary);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat-item {
  padding: 1.5rem;
}

.stat-item .stat-num {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  display: block;
}

.section-dark .stat-item .stat-num {
  color: var(--primary);
}

.stat-item .stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.section-dark .stat-item .stat-label {
  color: rgba(255, 255, 255, 0.75);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.tag {
  background: var(--primary);
  color: var(--accent);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

@media (max-width: 992px) {
  .three-col {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .calendar-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-mobile {
    display: flex;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .three-col {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

  .calendar-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .event-card {
    flex-direction: column;
  }

  .hero {
    min-height: 80vh;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-buttons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 15px;
  }

  section {
    padding: 2.5rem 0;
  }

  .calendar-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wheel-container {
    width: 220px;
    height: 220px;
  }

  .wheel-center {
    width: 60px;
    height: 60px;
    font-size: 0.7rem;
  }

  .map-container iframe {
    height: 300px;
  }

  .header-inner {
    padding: 0.6rem 1rem;
  }

  .logo-text {
    font-size: 0.85rem;
  }

  .logo-link img {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 320px) {
  html {
    font-size: 14px;
  }

  .container {
    padding: 0 0.75rem;
  }

  .btn {
    padding: 0.7rem 1.25rem;
    font-size: 0.85rem;
  }

  .card {
    padding: 1.25rem;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-buttons .btn {
    width: 100%;
  }
}
