* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-blue: #e3f2fd;
  --accent-blue-dark: #1565c0;
  --accent-blue-darker: #0d47a1;
  --white: #ffffff;
  --light-blue: #e8f4fd;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--white);
  color: #212121;
  line-height: 1.8;
  font-size: 17.5px;
}

a {
  text-decoration: none;
  color: var(--accent-blue-dark);
  transition: color 0.2s ease-in-out;
}

a:hover {
  color: var(--accent-blue-darker);
  text-decoration: underline;
}

h1, h2, h3 {
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.4px;
}

h1 {
  font-size: 72px;
  margin-bottom: 40px;
}

h2 {
  font-size: 48px;
  margin-bottom: 32px;
}

h3 {
  font-size: 28px;
  margin-bottom: 24px;
}

p {
  margin-bottom: 20px;
  max-width: 740px;
  line-height: 1.8;
}

header {
  position: sticky;
  top: 0;
  background-color: var(--white);
  padding: 20px 28px;
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.08);
  z-index: 1000;
  transition: box-shadow 0.3s ease-in-out;
}

header.scrolled {
  box-shadow: 0 6px 32px rgba(0, 0, 0, 0.08);
}

header nav {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo {
  font-size: 28px;
  font-weight: 600;
  color: var(--accent-blue-dark);
  cursor: pointer;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

header nav ul li a {
  font-size: 16px;
  font-weight: 500;
  color: #212121;
  position: relative;
}

header nav ul li a:hover {
  color: var(--accent-blue-dark);
  text-decoration: none;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 72px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 28px;
  }
  
  header nav ul {
    gap: 16px;
    font-size: 14px;
  }
  
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
}

section {
  padding: 110px 0;
}

section.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), 
              url('images/hero.jpg') center/cover no-repeat;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 0;
}

section.hero h1 {
  max-width: 600px;
  color: var(--white);
}

section.light {
  background-color: var(--primary-blue);
}

section.light-alt {
  background-color: var(--light-blue);
}

.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.section-grid.reverse {
  direction: rtl;
}

.section-grid.reverse > * {
  direction: ltr;
}

.section-grid img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .section-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 40px 0;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
}

table th {
  background-color: var(--accent-blue-dark);
  color: var(--white);
  padding: 16px;
  text-align: left;
  font-weight: 600;
}

table td {
  padding: 16px;
  border-bottom: 1px solid #e0e0e0;
}

table tr:hover {
  background-color: var(--light-blue);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin: 40px 0;
}

.card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease-in-out;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.card-body {
  padding: 24px;
}

.card h3 {
  margin-bottom: 12px;
}

.card p {
  font-size: 16px;
  margin: 0;
}

.food-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin: 40px 0;
}

.food-item {
  background: var(--light-blue);
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid var(--accent-blue-dark);
}

.food-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--accent-blue-dark);
}

.food-item p {
  font-size: 16px;
  margin: 0;
}

.faq-item {
  margin-bottom: 24px;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 24px;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-weight: 600;
  font-size: 18px;
  color: var(--accent-blue-dark);
  cursor: pointer;
  user-select: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  color: var(--accent-blue-darker);
}

.faq-answer {
  display: none;
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.8;
}

.faq-answer.active {
  display: block;
}

.toggle-icon {
  font-size: 20px;
  transition: transform 0.3s ease-in-out;
}

.faq-item.active .toggle-icon {
  transform: rotate(180deg);
}

.disclaimer {
  background: var(--light-blue);
  padding: 32px;
  border-radius: 8px;
  border-left: 4px solid var(--accent-blue-dark);
  margin: 40px 0;
}

.disclaimer h2 {
  font-size: 24px;
  margin-bottom: 16px;
}

.disclaimer p {
  font-size: 16px;
  margin: 0;
}

.button {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--accent-blue-dark) 0%, var(--accent-blue-darker) 100%);
  color: var(--white);
  border-radius: 6px;
  font-weight: 600;
  font-size: 17px;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
}

.button:hover {
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.2);
  transform: scale(1.02);
}

.button.secondary {
  background: var(--light-blue);
  color: var(--accent-blue-dark);
  border: 2px solid var(--accent-blue-dark);
}

.button.secondary:hover {
  background: var(--primary-blue);
}

form {
  max-width: 500px;
  margin: 40px 0;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #212121;
}

.form-group input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  font-size: 16px;
  transition: border-color 0.2s;
}

.form-group input:focus {
  outline: none;
  border-color: var(--accent-blue-dark);
  background-color: var(--light-blue);
}

.form-disclaimer {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
  padding: 12px;
  background: var(--primary-blue);
  border-radius: 6px;
  border-left: 3px solid var(--accent-blue-dark);
}

footer {
  background-color: #212121;
  color: var(--white);
  padding: 60px 28px;
}

footer .container {
  max-width: 1440px;
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--white);
}

.footer-section p {
  font-size: 15px;
  margin-bottom: 12px;
  color: #ccc;
  max-width: none;
}

.footer-section a {
  display: block;
  color: #ccc;
  font-size: 15px;
  margin-bottom: 10px;
  cursor: pointer;
}

.footer-section a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 32px;
  text-align: center;
  font-size: 14px;
  color: #999;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 2px solid var(--accent-blue-dark);
  padding: 20px 28px;
  z-index: 999;
  display: none;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
}

.cookie-banner.show {
  display: block;
}

.cookie-content {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  font-size: 15px;
  line-height: 1.6;
  min-width: 250px;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-buttons button {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.cookie-buttons .accept {
  background: var(--accent-blue-dark);
  color: var(--white);
}

.cookie-buttons .accept:hover {
  background: var(--accent-blue-darker);
}

.cookie-buttons .decline {
  background: var(--light-blue);
  color: var(--accent-blue-dark);
  border: 2px solid var(--accent-blue-dark);
}

.cookie-buttons .decline:hover {
  background: var(--primary-blue);
}

.cookie-buttons .more {
  background: transparent;
  color: var(--accent-blue-dark);
  border: 2px solid var(--accent-blue-dark);
}

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  overflow-y: auto;
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: var(--white);
  padding: 40px;
  border-radius: 8px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 16px;
}

.modal-header h2 {
  margin: 0;
  font-size: 28px;
}

.modal-close {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #212121;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  color: var(--accent-blue-dark);
}

.modal-body {
  font-size: 16px;
  line-height: 1.8;
}

.modal-body h3 {
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 12px;
}

.modal-body p {
  margin-bottom: 12px;
}

.modal-body ul, .modal-body ol {
  margin-left: 20px;
  margin-bottom: 20px;
}

.modal-body li {
  margin-bottom: 8px;
}

.thank-you-message {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  text-align: center;
  z-index: 2001;
}

.thank-you-message.show {
  display: block;
}

.thank-you-message h2 {
  color: var(--accent-blue-dark);
  margin-bottom: 16px;
}

.thank-you-message p {
  max-width: 300px;
  margin-bottom: 24px;
}

.thank-you-message button {
  padding: 10px 24px;
  background: var(--accent-blue-dark);
  color: var(--white);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .modal-content {
    width: 95%;
    padding: 24px;
  }
}

.info-box {
  background: var(--primary-blue);
  border: 2px solid var(--accent-blue-dark);
  padding: 32px;
  border-radius: 8px;
  margin: 40px 0;
}

.info-box h3 {
  color: var(--accent-blue-dark);
  font-size: 24px;
  margin-bottom: 16px;
}

.info-box p {
  font-size: 16px;
  margin-bottom: 12px;
}

.closing-section {
  background: var(--light-blue);
  padding: 40px;
  border-radius: 8px;
  margin: 40px 0;
}

.closing-section h3 {
  color: var(--accent-blue-dark);
  margin-bottom: 20px;
}

.closing-section p {
  font-size: 16px;
  margin-bottom: 16px;
}

.closing-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.closing-links a {
  display: inline-flex;
  align-items: center;
  padding: 12px 16px;
  background: var(--white);
  border-radius: 6px;
  border: 2px solid var(--accent-blue-dark);
  font-weight: 600;
  color: var(--accent-blue-dark);
  transition: all 0.2s;
}

.closing-links a:hover {
  background: var(--accent-blue-dark);
  color: var(--white);
  text-decoration: none;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin: 40px 0;
}

.comparison-column h3 {
  color: var(--accent-blue-dark);
  padding-bottom: 16px;
  border-bottom: 2px solid var(--accent-blue-dark);
  margin-bottom: 20px;
}

.comparison-column ul {
  list-style: none;
}

.comparison-column li {
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
  font-size: 16px;
}

.comparison-column li:before {
  content: "✓ ";
  color: var(--accent-blue-dark);
  font-weight: 700;
  margin-right: 12px;
}

@media (max-width: 768px) {
  .comparison-grid {
    grid-template-columns: 1fr;
  }
}
