:root {
  --primary: #AFA0A0;
  --primary-dark: #7a6e6e;
  --primary-light: #d4c8c8;
  --bg-dark: #ebe4e4;
  --bg-darker: #ffffff;
  --bg-light: #faf8f8;
  --bg-section-alt: #f3eded;
  --text-light: #1e1a1a;
  --text-dark: #1e1a1a;
  --text-muted: #5c5252;
  --text-on-primary: #1e1a1a;
  --accent: #8a7d7d;
  --contrast-icon: #5c4545;
  --pattern-opacity: 0.18;
  --transition: 0.3s ease;
  --header-height: 72px;
  --max-width: 1200px;
  --radius: 8px;
  --shadow: 0 4px 20px rgba(30, 26, 26, 0.08);
  --shadow-md: 0 6px 24px rgba(30, 26, 26, 0.12);
  --border-light: rgba(175, 160, 160, 0.45);
}

*,
*::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;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--bg-light);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent);
}

ul, ol {
  padding-left: 1.5rem;
}

h1, h2, h3, h4 {
  line-height: 1.3;
  margin-bottom: 1rem;
  font-weight: 600;
}

h1 { font-size: clamp(1.75rem, 5vw, 2.75rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }

p {
  margin-bottom: 1rem;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.pattern-bg {
  background-color: var(--bg-dark);
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(175, 160, 160, var(--pattern-opacity)) 10px, rgba(175, 160, 160, var(--pattern-opacity)) 11px),
    repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(175, 160, 160, var(--pattern-opacity)) 10px, rgba(175, 160, 160, var(--pattern-opacity)) 11px),
    radial-gradient(circle at 25% 25%, rgba(175, 160, 160, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(175, 160, 160, 0.12) 0%, transparent 50%);
}

.section-dark {
  background-color: var(--bg-dark);
  color: var(--text-dark);
}

.section-dark a {
  color: var(--primary-dark);
}

.section-alt {
  background-color: var(--bg-section-alt);
  color: var(--text-dark);
}

.section-alt a {
  color: var(--primary-dark);
}

.section-light {
  background-color: var(--bg-light);
  color: var(--text-dark);
}

.section-primary {
  position: relative;
  background-color: var(--primary-light);
  background-image:
    linear-gradient(rgba(255, 252, 252, 0.82), rgba(243, 237, 237, 0.88)),
    url("../image/picture12.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  color: var(--text-dark);
}

.section-primary > .container {
  position: relative;
  z-index: 1;
}

.section-primary .card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.section-primary .quote-block {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.section-primary .stat-item {
  background: rgba(30, 26, 26, 0.12);
  border-color: var(--text-dark);
}

.section-primary .stat-item strong,
.section-primary .stat-item .bi {
  color: var(--text-dark);
}

.section-primary .section-header .icon-wrap {
  color: var(--text-dark);
}

.btn-outline-dark {
  background-color: transparent;
  color: var(--text-dark);
  border-color: var(--text-dark);
}

.btn-outline-dark:hover {
  background-color: var(--text-dark);
  color: #ffffff;
}

.ai-notice-bar {
  background-color: var(--bg-section-alt);
  color: var(--text-muted);
  font-size: 0.8rem;
  text-align: center;
  padding: 0.45rem 1rem;
  border-bottom: 1px solid var(--border-light);
}

.ai-notice-bar a {
  color: var(--primary-dark);
  font-weight: 600;
}

.ai-notice-bar .bi {
  color: var(--contrast-icon);
  margin-right: 0.35rem;
}

.crisis-help-bar {
  background-color: rgba(92, 69, 69, 0.1);
  color: var(--text-dark);
  font-size: 0.78rem;
  text-align: center;
  padding: 0.45rem 1rem;
  border-bottom: 1px solid var(--border-light);
}

.crisis-help-bar strong {
  font-weight: 700;
}

.disclaimer-bar {
  background-color: var(--bg-section-alt);
  color: var(--text-muted);
  font-size: 0.8rem;
  text-align: center;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid var(--border-light);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--bg-darker);
  border-bottom: 2px solid var(--primary);
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 1rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-dark);
  flex-shrink: 0;
}

.logo-link img {
  width: 48px;
  height: 48px;
}

.logo-text {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
  max-width: 180px;
}

.nav-toggle {
  display: none;
  background: var(--bg-light);
  border: 2px solid var(--primary);
  color: var(--text-dark);
  font-size: 1.5rem;
  padding: 0.35rem 0.6rem;
  cursor: pointer;
  border-radius: var(--radius);
  line-height: 1;
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  padding: 0;
  gap: 0.25rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-list li a {
  display: block;
  padding: 0.5rem 0.85rem;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.9rem;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}

.nav-list li a:hover,
.nav-list li a.active {
  background-color: var(--primary);
  color: var(--text-on-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(255, 252, 252, 0.92) 0%, rgba(245, 240, 240, 0.85) 45%, rgba(175, 160, 160, 0.55) 100%);
}

.hero-overlay-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-conic-gradient(from 0deg at 50% 50%, transparent 0deg 15deg, rgba(175, 160, 160, 0.1) 15deg 30deg);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2.5rem 2rem;
  max-width: 900px;
  border-radius: var(--radius);
  background: rgba(255, 252, 252, 0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow-md);
}

.hero-content h1 {
  color: var(--text-dark);
  margin-bottom: 1.25rem;
  text-shadow: none;
}

.hero-content p {
  color: var(--text-muted);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  background-color: var(--primary);
  color: var(--text-dark);
  text-decoration: none;
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.btn:hover {
  background-color: var(--primary-dark);
  color: #ffffff;
  border-color: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-dark);
  border-color: var(--text-dark);
}

.btn-outline:hover {
  background-color: var(--text-dark);
  color: #ffffff;
}

.section {
  padding: 4rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header .icon-wrap {
  font-size: 2.5rem;
  color: var(--contrast-icon);
  margin-bottom: 1rem;
}

.section-dark .section-header .icon-wrap,
.section-alt .section-header .icon-wrap {
  color: var(--contrast-icon);
}

.section-light .section-header .icon-wrap {
  color: var(--contrast-icon);
}

.section-header p {
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow);
  color: var(--text-dark);
}

.section-light .card {
  background-color: #ffffff;
  border-color: var(--border-light);
  box-shadow: var(--shadow);
  color: var(--text-dark);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card .bi {
  font-size: 2rem;
  color: var(--contrast-icon);
  margin-bottom: 1rem;
  display: block;
}

.section-dark .card .bi,
.section-alt .card .bi,
.section-light .card .bi {
  color: var(--contrast-icon);
}

.card h3 {
  margin-bottom: 0.75rem;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.feature-list li .bi {
  color: var(--contrast-icon);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.section-dark .feature-list li .bi,
.section-alt .feature-list li .bi,
.section-light .feature-list li .bi {
  color: var(--contrast-icon);
}

.image-block {
  border-radius: var(--radius);
  overflow: hidden;
  border: 3px solid var(--primary);
  box-shadow: var(--shadow);
}

.image-block img {
  width: 100%;
  object-fit: cover;
  min-height: 280px;
}

.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  min-width: 140px;
  background: #ffffff;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow);
}

.stat-item .bi {
  font-size: 2rem;
  color: var(--contrast-icon);
  display: block;
  margin-bottom: 0.5rem;
}

.stat-item strong {
  display: block;
  font-size: 1.75rem;
  color: var(--text-dark);
}

.timeline {
  position: relative;
  padding-left: 2rem;
  border-left: 3px solid var(--primary);
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
  padding-left: 1.5rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -2.55rem;
  top: 0.4rem;
  width: 14px;
  height: 14px;
  background: var(--primary);
  border-radius: 50%;
  border: 3px solid #ffffff;
}

.calculator-box {
  background: #ffffff;
  border: 2px solid var(--border-light);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}

.calculator-box label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.calculator-box input[type="range"] {
  width: 100%;
  margin: 1rem 0;
  accent-color: var(--primary);
}

.calculator-box input[type="number"] {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  font-size: 1rem;
  background: var(--bg-light);
  color: var(--text-dark);
}

.visualization-wrap {
  margin-top: 2rem;
  text-align: center;
}

.battery-visual {
  width: 120px;
  height: 200px;
  border: 4px solid var(--primary);
  border-radius: 12px;
  margin: 0 auto 1.5rem;
  position: relative;
  background: var(--bg-light);
  overflow: hidden;
}

.battery-visual::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 10px;
  background: var(--primary);
  border-radius: 4px 4px 0 0;
}

.battery-fill {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0%;
  background: linear-gradient(to top, var(--primary-dark), var(--primary-light));
  transition: height 0.6s ease;
}

.tree-visual {
  width: 180px;
  height: 200px;
  margin: 0 auto 1.5rem;
  position: relative;
}

.tree-trunk {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 60px;
  background: var(--accent);
  border-radius: 4px;
}

.tree-crown {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--primary-light), var(--primary-dark));
  transition: width 0.6s ease, height 0.6s ease;
}

.result-text {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
}

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1rem 1.25rem;
  background: var(--bg-section-alt);
  border: none;
  color: var(--text-dark);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.section-light .faq-question,
.section-dark .faq-question,
.section-alt .faq-question {
  background: var(--bg-section-alt);
  color: var(--text-dark);
}

.faq-answer {
  padding: 0 1.25rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer.open {
  padding: 1rem 1.25rem;
  max-height: 500px;
}

.events-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.events-table th,
.events-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}

.events-table th {
  background: var(--bg-section-alt);
  font-weight: 600;
  color: var(--text-dark);
}

.events-table tr:hover td {
  background: rgba(175, 160, 160, 0.12);
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  background: #ffffff;
  color: var(--text-dark);
}

.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.35rem;
  accent-color: var(--primary-dark);
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 3px solid var(--primary);
  margin-top: 2rem;
}

.map-wrap iframe {
  width: 100%;
  display: block;
}

.contact-info-list {
  list-style: none;
  padding: 0;
}

.contact-info-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-light);
}

.contact-info-list .bi {
  font-size: 1.5rem;
  color: var(--contrast-icon);
  flex-shrink: 0;
}

.site-footer {
  background-color: var(--bg-section-alt);
  color: var(--text-muted);
  padding: 2.5rem 0 1.5rem;
  border-top: 2px solid var(--primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-grid h4 {
  color: var(--text-dark);
  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);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--primary-dark);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
  font-size: 0.85rem;
}

.footer-trust-line {
  margin-bottom: 0.5rem;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.footer-about-link {
  margin-top: 0.75rem;
  font-size: 0.9rem;
}

.footer-about-link a {
  color: var(--primary-dark);
  text-decoration: none;
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  font-size: 0.9rem;
}

.footer-contact-list li {
  margin-bottom: 0.6rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer-contact-list .bi {
  color: var(--contrast-icon);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.footer-contact-list a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-contact-list a:hover {
  color: var(--primary-dark);
}

.trust-card h3 {
  margin-bottom: 1rem;
}

.calc-disclaimer {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #ffffff;
  color: var(--text-dark);
  padding: 1.25rem;
  border-top: 2px solid var(--primary);
  box-shadow: 0 -4px 24px rgba(30, 26, 26, 0.12);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.cookie-inner p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cookie-buttons .btn {
  font-size: 0.85rem;
  padding: 0.6rem 1.25rem;
}

.cookie-settings {
  display: none;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-light);
}

.cookie-settings.open {
  display: block;
}

.cookie-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-light);
}

.cookie-toggle label {
  font-size: 0.9rem;
}

.toggle-switch {
  position: relative;
  width: 48px;
  height: 26px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--accent);
  border-radius: 26px;
  cursor: pointer;
  transition: background var(--transition);
}

.toggle-slider::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 3px;
  bottom: 3px;
  background: #ffffff;
  border-radius: 50%;
  transition: transform var(--transition);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.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;
}

.policy-content h2 {
  margin-top: 2rem;
  font-size: 1.35rem;
}

.policy-content h3 {
  margin-top: 1.5rem;
  font-size: 1.1rem;
}

.success-box {
  text-align: center;
  padding: 4rem 1.25rem;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.success-box .bi {
  font-size: 4rem;
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
}

.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: #ffffff;
  border-radius: var(--radius);
  border-left: 4px solid var(--primary);
  box-shadow: var(--shadow);
}

.numbered-steps li::before {
  content: counter(step);
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: var(--text-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.quote-block {
  border-left: 4px solid var(--primary);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  background: rgba(175, 160, 160, 0.15);
  font-style: italic;
  color: var(--text-dark);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.tag-list li {
  background: var(--primary);
  color: var(--text-dark);
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.inner-hero {
  min-height: 50vh;
  padding-top: var(--header-height);
}

.cookie-banner .btn-outline {
  color: var(--text-dark);
  border-color: var(--text-dark);
}

.cookie-banner .btn-outline:hover {
  background-color: var(--text-dark);
  color: #ffffff;
}

.page-intro {
  padding: 3rem 0;
}

@media (max-width: 992px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 2px solid var(--primary);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    box-shadow: var(--shadow-md);
  }

  .main-nav.open {
    max-height: 400px;
    overflow-y: auto;
  }

  .nav-list {
    flex-direction: column;
    padding: 1rem;
    gap: 0;
  }

  .nav-list li a {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid var(--border-light);
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3rem 0;
  }

  .hero {
    min-height: 85vh;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-buttons .btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 320px) {
  html {
    font-size: 14px;
  }

  .container {
    padding: 0 0.85rem;
  }

  .logo-text {
    font-size: 0.8rem;
    max-width: 130px;
  }

  .logo-link img {
    width: 40px;
    height: 40px;
  }

  .btn {
    padding: 0.65rem 1.25rem;
    font-size: 0.85rem;
  }

  .hero-content {
    padding: 1.75rem 1.25rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .events-table {
    font-size: 0.85rem;
  }

  .events-table th,
  .events-table td {
    padding: 0.5rem;
  }
}
