*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #2D8C72;
  --primary-dark: #1f6b57;
  --primary-light: #3da88a;
  --accent: #e8f5f0;
  --dark: #1a2e28;
  --text: #1f3330;
  --text-light: #4a635c;
  --white: #ffffff;
  --section-alt: #f0f7f4;
  --section-dark: #d4ebe3;
  --shadow: 0 4px 20px rgba(45, 140, 114, 0.12);
  --radius: 12px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary-dark);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--primary);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.disclaimer-bar {
  background: var(--dark);
  color: var(--white);
  font-size: 0.8rem;
  text-align: center;
  padding: 8px 16px;
  line-height: 1.5;
}

.site-header {
  background: var(--white);
  border-bottom: 2px solid var(--accent);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-link img {
  height: 40px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.main-nav a {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--primary);
  font-size: 1.6rem;
}

.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, 46, 40, 0.82), rgba(45, 140, 114, 0.65));
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 40px 20px;
  max-width: 800px;
}

.hero-content h1 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.2;
}

.hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  margin-bottom: 28px;
  opacity: 0.95;
}

.hero-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 520px;
  margin: 0 auto;
}

.hero-form-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.92);
  text-align: left;
  line-height: 1.45;
  cursor: pointer;
}

.hero-consent input {
  margin-top: 3px;
  accent-color: var(--primary);
  flex-shrink: 0;
}

.hero-consent a {
  color: #fff;
  text-decoration: underline;
}

.hero-form input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: 14px 18px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-size: 1rem;
  outline: none;
}

.hero-form input[type="email"]:focus {
  border-color: var(--primary-light);
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  text-align: center;
}

.btn:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--primary-dark);
}

.btn-white:hover {
  background: var(--accent);
  color: var(--primary-dark);
}

section {
  padding: 70px 0;
}

.section-alt {
  background: var(--section-alt);
}

.section-dark {
  background: var(--section-dark);
}

.section-primary {
  background: var(--primary);
  color: var(--white);
}

.section-primary h2,
.section-primary h3 {
  color: var(--white);
}

.section-primary p,
.section-primary li {
  color: rgba(255, 255, 255, 0.92);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: var(--dark);
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
}

.section-header p {
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.section-primary .section-header h2,
.section-primary .section-header p {
  color: var(--white);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.card:hover {
  transform: translateY(-4px);
}

.card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 16px;
  display: block;
}

.card h3 {
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 10px;
}

.card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.image-block img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-item i {
  font-size: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 4px;
}

.feature-item h4 {
  color: var(--dark);
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.feature-item p {
  color: var(--text-light);
  font-size: 0.93rem;
}

.numbered-list {
  counter-reset: item;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.numbered-list li {
  counter-increment: item;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.numbered-list li::before {
  content: counter(item);
  background: var(--primary);
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.numbered-list li div h4 {
  color: var(--dark);
  margin-bottom: 4px;
}

.numbered-list li div p {
  color: var(--text-light);
  font-size: 0.93rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.tag {
  background: var(--accent);
  color: var(--primary-dark);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

.timeline {
  position: relative;
  padding-left: 30px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 28px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -26px;
  top: 24px;
  width: 14px;
  height: 14px;
  background: var(--primary);
  border-radius: 50%;
  border: 3px solid var(--white);
}

.timeline-item h4 {
  color: var(--dark);
  margin-bottom: 8px;
}

.timeline-item p {
  color: var(--text-light);
  font-size: 0.93rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  gap: 12px;
}

.faq-question i {
  color: var(--primary);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition);
}

.faq-answer-inner {
  padding: 0 22px 18px;
  color: var(--text-light);
  font-size: 0.93rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.event-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary);
}

.event-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--primary-dark);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.event-card h4 {
  color: var(--dark);
  margin-bottom: 8px;
}

.event-card p {
  color: var(--text-light);
  font-size: 0.93rem;
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.safety-card {
  display: flex;
  gap: 16px;
  padding: 22px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.safety-card i {
  font-size: 1.8rem;
  color: var(--primary);
  flex-shrink: 0;
}

.safety-card h4 {
  color: var(--dark);
  margin-bottom: 6px;
}

.safety-card p {
  color: var(--text-light);
  font-size: 0.9rem;
}

.recipe-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.recipe-card-header {
  background: var(--primary);
  color: var(--white);
  padding: 18px 22px;
}

.recipe-card-header h3 {
  font-size: 1.15rem;
}

.recipe-card-body {
  padding: 22px;
}

.recipe-card-body p,
.recipe-card-body li {
  color: var(--text-light);
  font-size: 0.93rem;
}

.recipe-card-body ul {
  list-style: disc;
  padding-left: 20px;
  margin-top: 10px;
}

.recipe-card-body ul li {
  margin-bottom: 6px;
}

.stats-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.stat-item {
  text-align: center;
}

.stat-item i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 8px;
  display: block;
}

.stat-item .stat-num {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
}

.stat-item .stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
}

.contact-section .grid-2 {
  gap: 48px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-info-item i {
  font-size: 1.4rem;
  color: var(--primary);
  margin-top: 4px;
}

.contact-info-item div h4 {
  color: var(--dark);
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.contact-info-item div p,
.contact-info-item div a {
  color: var(--text-light);
  font-size: 0.93rem;
}

.contact-form {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--dark);
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #d0e8df;
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.checkbox-group input {
  margin-top: 5px;
  accent-color: var(--primary);
}

.checkbox-group label {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 400;
  line-height: 1.5;
}

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 32px;
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

.map-placeholder {
  background: var(--section-alt);
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-consent-prompt {
  text-align: center;
  padding: 32px 24px;
  max-width: 480px;
}

.map-consent-prompt p {
  color: var(--text-light);
  margin-bottom: 12px;
  font-size: 0.92rem;
  line-height: 1.55;
}

.event-price {
  margin-top: 12px;
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.5;
}

.event-price a {
  color: var(--primary);
}

.footer-legal-bar {
  text-align: center;
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
}

.footer-legal-bar a {
  color: rgba(255, 255, 255, 0.75);
  margin: 0 4px;
}

.footer-legal-bar a:hover {
  color: var(--primary-light);
}

.success-privacy {
  font-size: 0.9rem;
  color: var(--text-light);
  max-width: 420px;
  margin: 16px auto 0;
  line-height: 1.55;
}

.success-privacy a {
  color: var(--primary);
}

.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}

.footer-brand p {
  font-size: 0.9rem;
  margin-top: 12px;
  line-height: 1.6;
}

.footer-org {
  font-size: 0.88rem;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact {
  margin-top: 14px;
  font-size: 0.85rem;
}

.footer-contact p {
  margin: 6px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.9);
  word-break: break-all;
}

.footer-contact i {
  color: var(--primary-light);
  margin-top: 2px;
  flex-shrink: 0;
}

.trust-box {
  background: var(--section-alt);
  border-radius: var(--radius);
  padding: 24px;
  border-left: 4px solid var(--primary);
}

.trust-box h3 {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-box h3 i {
  color: var(--primary);
}

.trust-box ul {
  list-style: none;
  padding: 0;
}

.trust-box li {
  margin-bottom: 10px;
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.5;
}

.trust-box a {
  color: var(--primary);
  font-weight: 600;
}

.angrerett-box {
  background: var(--section-alt);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: 24px;
  margin: 24px 0;
}

.angrerett-box h3 {
  color: var(--dark);
  margin-bottom: 12px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.angrerett-box h3 i {
  color: var(--primary);
  font-size: 1.4rem;
}

.angrerett-box p {
  color: var(--text-light);
}

.footer-links h4 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: 1rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 20px;
  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(--dark);
  color: var(--white);
  padding: 20px;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform var(--transition);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}

.cookie-content-block {
  flex: 1;
  min-width: 250px;
}

.cookie-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
}

.cookie-text {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.cookie-text a {
  color: var(--primary-light);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.cookie-buttons .btn,
.cookie-settings-actions .btn {
  padding: 10px 20px;
  font-size: 0.85rem;
  min-width: 130px;
  font-weight: 600;
}

.btn-cookie-accept {
  background: var(--primary);
  color: var(--white);
}

.btn-cookie-accept:hover {
  background: var(--primary-dark);
  color: var(--white);
}

.btn-cookie-reject {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.7);
}

.btn-cookie-reject:hover {
  background: rgba(255, 255, 255, 0.22);
  color: var(--white);
}

.btn-cookie-settings {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.btn-cookie-settings:hover {
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
}

.cookie-settings-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.cookie-settings-panel {
  display: none;
  width: 100%;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.cookie-settings-panel.visible {
  display: block;
}

.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-category label {
  font-size: 0.9rem;
}

.cookie-category span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  display: block;
}

.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: rgba(255, 255, 255, 0.2);
  border-radius: 26px;
  cursor: pointer;
  transition: background var(--transition);
}

.toggle-slider::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 3px;
  bottom: 3px;
  background: var(--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;
}

.page-hero {
  background: var(--primary);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-family: Georgia, "Times New Roman", serif;
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 1.05rem;
  opacity: 0.92;
  max-width: 600px;
  margin: 0 auto;
}

.success-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
}

.success-content i {
  font-size: 4rem;
  color: var(--primary);
  margin-bottom: 20px;
  display: block;
}

.success-content h1 {
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 12px;
}

.success-content p {
  color: var(--text-light);
  margin-bottom: 24px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.success-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
}

.policy-content h2 {
  font-size: 1.4rem;
  color: var(--dark);
  margin: 32px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
}

.policy-content h3 {
  font-size: 1.15rem;
  color: var(--primary-dark);
  margin: 24px 0 10px;
}

.policy-content p,
.policy-content li {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.policy-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.inline-cta {
  text-align: center;
  margin-top: 32px;
}

.text-content p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 0.97rem;
}

.text-content h3 {
  color: var(--dark);
  margin: 20px 0 10px;
  font-size: 1.15rem;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.comparison-table th,
.comparison-table td {
  padding: 14px 18px;
  text-align: left;
  font-size: 0.9rem;
}

.comparison-table th {
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
}

.comparison-table td {
  color: var(--text-light);
  border-bottom: 1px solid var(--accent);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.icon-row {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.icon-box {
  text-align: center;
  max-width: 160px;
}

.icon-box i {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 10px;
  display: block;
}

.icon-box p {
  font-size: 0.85rem;
  color: var(--text-light);
}

@media (max-width: 992px) {
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .safety-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 30px 30px;
    gap: 0;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    transition: right var(--transition);
    z-index: 999;
  }

  .main-nav.open {
    right: 0;
  }

  .main-nav a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--accent);
    font-size: 1rem;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 998;
  }

  .nav-overlay.visible {
    display: block;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 50px 0;
  }

  .hero-form-row {
    flex-direction: column;
  }

  .hero-form input[type="email"],
  .hero-form .btn {
    width: 100%;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-buttons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }

  .header-inner {
    padding: 10px 14px;
  }

  .card {
    padding: 20px;
  }

  .contact-form {
    padding: 22px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 10px 12px;
    font-size: 0.82rem;
  }

  .stats-row {
    gap: 24px;
  }
}

@media (max-width: 320px) {
  html {
    font-size: 14px;
  }

  .logo-link img {
    height: 32px;
  }

  .hero-content {
    padding: 30px 12px;
  }

  .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .main-nav {
    width: 100%;
    right: -100%;
  }

  .cookie-buttons .btn {
    width: 100%;
    text-align: center;
  }
}
