*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #DC4B48;
  --primary-dark: #b83a37;
  --primary-light: #f5e8e8;
  --dark: #1a1a2e;
  --dark-alt: #16213e;
  --light: #f8f9fa;
  --light-alt: #eef1f5;
  --text-dark: #1a1a2e;
  --text-light: #ffffff;
  --text-muted: #5a6270;
  --border: #dde2e8;
  --shadow: 0 4px 24px rgba(26, 26, 46, 0.1);
  --radius: 8px;
  --transition: 0.3s ease;
  --max-width: 1200px;
  --header-height: 72px;
}

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: var(--light);
  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-dark);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.disclaimer-bar {
  background: var(--dark);
  color: var(--text-light);
  font-size: 0.78rem;
  text-align: center;
  padding: 10px 16px;
  line-height: 1.55;
  border-bottom: 2px solid var(--primary);
}

.disclaimer-bar a {
  color: #ffc9c8;
  text-decoration: underline;
}

.disclaimer-bar a:hover {
  color: #fff;
}

.editorial-notice {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 32px;
}

.editorial-notice h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.editorial-notice p,
.editorial-notice li {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 8px;
}

.editorial-notice ul {
  list-style: disc;
  padding-left: 20px;
  margin-top: 8px;
}

.content-notice {
  background: rgba(220, 75, 72, 0.08);
  border-left: 3px solid var(--primary);
  padding: 14px 18px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 16px 0 0;
}

.content-notice p {
  font-size: 0.85rem;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.55;
}

.section-dark .content-notice {
  background: rgba(255, 255, 255, 0.08);
}

.section-dark .content-notice p {
  color: rgba(255, 255, 255, 0.88);
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 16px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dark);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.logo-link:hover {
  color: var(--primary);
}

.logo-link img {
  width: 56px;
  height: 56px;
}

.site-footer .logo-link img {
  width: 48px;
  height: 48px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-nav a {
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 500;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--primary);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text-dark);
  font-size: 1.5rem;
}

.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  background: var(--dark);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.hero:hover .hero-bg img {
  transform: scale(1.05);
  opacity: 0.45;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.92) 0%, rgba(220, 75, 72, 0.55) 100%);
  z-index: 1;
  transition: background var(--transition);
}

.hero:hover .hero-overlay {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(220, 75, 72, 0.65) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 80px 0;
  width: 100%;
}

.hero-text h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--text-light);
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 8px 16px;
  border-radius: 50px;
  color: var(--text-light);
  font-size: 0.85rem;
  transition: background var(--transition), transform var(--transition);
}

.hero-badge:hover {
  background: rgba(220, 75, 72, 0.4);
  transform: translateY(-2px);
}

.hero-badge i {
  color: var(--primary);
  font-size: 1.1rem;
}

.hero-form-wrap {
  background: rgba(255, 255, 255, 0.97);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.hero:hover .hero-form-wrap {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.hero-form-wrap h2 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.hero-form-wrap p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text-dark);
  background: #fff;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
}

.form-check input {
  margin-top: 4px;
  flex-shrink: 0;
}

.form-check label {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--primary);
  color: var(--text-light);
  border: none;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  font-family: inherit;
}

.btn:hover {
  background: var(--primary-dark);
  color: var(--text-light);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--text-light);
}

.btn-light {
  background: var(--text-light);
  color: var(--primary);
}

.btn-light:hover {
  background: var(--primary-light);
  color: var(--primary-dark);
}

section {
  padding: 72px 0;
}

.section-dark {
  background: var(--dark);
  color: var(--text-light);
}

.section-dark h2,
.section-dark h3 {
  color: var(--text-light);
}

.section-dark p {
  color: rgba(255, 255, 255, 0.88);
}

.section-accent {
  background: #fff0ef;
  color: var(--text-dark);
  border-top: 4px solid var(--primary);
  border-bottom: 4px solid var(--primary);
}

.section-accent h2,
.section-accent h3,
.section-accent h4 {
  color: var(--text-dark);
}

.section-accent p {
  color: var(--text-muted);
}

.section-accent .section-label {
  color: var(--primary);
}

.section-accent .content-block h2 {
  color: var(--text-dark);
}

.section-accent .content-block p {
  color: var(--text-muted);
}

.section-accent .cta-section h2 {
  color: var(--text-dark);
}

.section-accent .cta-section p {
  color: var(--text-muted);
}

.section-light {
  background: var(--light);
  color: var(--text-dark);
}

.section-alt {
  background: var(--light-alt);
  color: var(--text-dark);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.section-header h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 12px;
  color: var(--text-dark);
}

.section-dark .section-header h2 {
  color: var(--text-light);
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.section-dark .section-header p {
  color: rgba(255, 255, 255, 0.8);
}

.section-accent .section-header p {
  color: var(--text-muted);
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  margin-bottom: 8px;
}

.section-dark .section-label {
  color: rgba(255, 255, 255, 0.7);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.card {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(26, 26, 46, 0.15);
}

.section-dark .card {
  background: var(--dark-alt);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.card-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.card-icon i {
  font-size: 1.5rem;
  color: var(--primary);
}

.section-dark .card-icon {
  background: rgba(220, 75, 72, 0.2);
}

.section-dark .card-icon i {
  color: #ff8a87;
}

.card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.section-dark .card h3 {
  color: var(--text-light);
}

.card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.section-dark .card p {
  color: rgba(255, 255, 255, 0.78);
}

.image-block {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}

.content-block h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  margin-bottom: 16px;
}

.content-block p {
  margin-bottom: 14px;
  color: var(--text-muted);
}

.section-dark .content-block p {
  color: rgba(255, 255, 255, 0.85);
}

.feature-list {
  margin-top: 20px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text-muted);
}

.section-dark .feature-list li {
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
}

.feature-list li i {
  color: var(--primary);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.section-dark .feature-list li i {
  color: #ff8a87;
}

.numbered-list {
  counter-reset: item;
}

.numbered-list li {
  counter-increment: item;
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.numbered-list li::before {
  content: counter(item);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: var(--text-light);
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.numbered-list li div h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.numbered-list li div p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.form-privacy-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 12px;
  line-height: 1.5;
}

.form-privacy-note a {
  color: var(--primary);
  text-decoration: underline;
}

.hero-form-wrap .form-privacy-note {
  color: rgba(255, 255, 255, 0.75);
}

.hero-form-wrap .form-privacy-note a {
  color: #ffc9c8;
}

.food-examples-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.food-example {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  border-left: 4px solid var(--primary);
  box-shadow: var(--shadow);
}

.food-example h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.food-example p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.section-dark .food-example {
  background: var(--dark-alt);
  border-left-color: #ff8a87;
}

.section-dark .food-example h4 {
  color: var(--text-light);
}

.section-dark .food-example p {
  color: rgba(255, 255, 255, 0.78);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  padding: 24px;
}

.stat-number {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.section-dark .stat-number {
  color: #ff8a87;
}

.stat-label {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.section-dark .stat-label {
  color: rgba(255, 255, 255, 0.75);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  background: #fff;
}

.section-dark .faq-item {
  background: var(--dark-alt);
  border-color: rgba(255, 255, 255, 0.1);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  font-family: inherit;
}

.section-dark .faq-question {
  color: var(--text-light);
}

.faq-question i {
  color: var(--primary);
  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 0.4s ease;
}

.faq-answer-inner {
  padding: 0 24px 18px;
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.section-dark .faq-answer-inner {
  color: rgba(255, 255, 255, 0.78);
}

.events-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.events-table th,
.events-table td {
  padding: 14px 20px;
  text-align: left;
  font-size: 0.93rem;
}

.events-table th {
  background: var(--primary);
  color: var(--text-light);
  font-weight: 600;
}

.events-table tr:nth-child(even) {
  background: var(--light-alt);
}

.events-table td {
  color: var(--text-dark);
  border-bottom: 1px solid var(--border);
}

.guidelines-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.guideline-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.guideline-card i {
  font-size: 1.8rem;
  color: var(--primary);
  flex-shrink: 0;
}

.guideline-card h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.guideline-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.page-hero {
  background: var(--dark);
  padding: 60px 0;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--text-light);
  margin-bottom: 12px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-info-item i {
  font-size: 1.4rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-item h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-info-item p,
.contact-info-item a {
  font-size: 1rem;
  color: var(--text-dark);
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}

.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}

.footer-brand p {
  font-size: 0.9rem;
  margin-top: 12px;
  line-height: 1.6;
}

.footer-links h4 {
  color: var(--text-light);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #ff8a87;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 3px solid var(--primary);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 240px;
}

.cookie-text h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--text-dark);
  font-weight: 700;
}

.cookie-text p {
  font-size: 0.9rem;
  color: var(--text-dark);
  line-height: 1.6;
}

.cookie-text a {
  color: var(--primary);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions .btn {
  padding: 10px 18px;
  font-size: 0.85rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.open {
  display: flex;
}

.cookie-modal-content {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal-content h3 {
  margin-bottom: 16px;
  color: var(--text-dark);
}

.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.cookie-category-info h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.cookie-category-info p {
  font-size: 0.82rem;
  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: #fff;
  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: 10px;
  margin-top: 20px;
  justify-content: flex-end;
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
}

.policy-content h2 {
  font-size: 1.4rem;
  margin: 32px 0 12px;
  color: var(--text-dark);
}

.policy-content h3 {
  font-size: 1.1rem;
  margin: 24px 0 8px;
  color: var(--text-dark);
}

.policy-content p,
.policy-content li {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.7;
}

.policy-content code {
  background: var(--light-alt);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.88rem;
  color: var(--text-dark);
}

.policy-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.success-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.success-icon i {
  font-size: 2.5rem;
  color: var(--primary);
}

.success-page h1 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.success-page p {
  color: var(--text-muted);
  margin-bottom: 24px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.success-page .btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.cta-section {
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: 12px;
}

.cta-section p {
  margin-bottom: 24px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.timeline {
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary);
}

.timeline-item {
  position: relative;
  margin-bottom: 28px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 6px;
  width: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 50%;
  border: 2px solid #fff;
}

.timeline-item h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.timeline-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.section-dark .timeline-item p {
  color: rgba(255, 255, 255, 0.78);
}

.info-box {
  background: var(--primary-light);
  border-left: 4px solid var(--primary);
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 20px 0;
}

.info-box p {
  font-size: 0.93rem;
  color: var(--text-dark);
  margin: 0;
}

.section-dark .info-box {
  background: rgba(220, 75, 72, 0.15);
  border-left-color: #ff8a87;
}

.section-dark .info-box p {
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 992px) {
  .grid-3,
  .food-examples-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-4,
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-content,
  .grid-2,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px;
    gap: 0;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition), opacity var(--transition);
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .main-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    display: block;
  }

  .grid-3,
  .grid-4,
  .food-examples-grid,
  .stats-row,
  .guidelines-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 48px 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 48px 0;
  }
}

@media (max-width: 320px) {
  html {
    font-size: 14px;
  }

  .container {
    padding: 0 12px;
  }

  .hero-form-wrap {
    padding: 20px;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-actions {
    flex-direction: column;
  }

  .cookie-actions .btn {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
