:root {
  --primary: #2F3E4A;
  --accent-light: #EDE4D9;
  --accent-olive: #6B8E6B;
  --accent-rust: #8B4513;
  --white: #FFFFFF;
  --dark: #1a1a1a;
  --gray-light: #f5f5f5;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--primary);
  background-color: var(--white);
  font-weight: 400;
}

h1, h2, h3 {
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2.5rem;
  line-height: 1.3;
}

h3 {
  font-size: 1.75rem;
  line-height: 1.4;
}

h4, h5, h6 {
  font-weight: 600;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

a {
  color: var(--accent-rust);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.8;
}

header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(47, 62, 74, 0.1);
  padding: 1rem 0;
  transition: opacity 0.3s ease;
}

header.scrolled {
  opacity: 0.98;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  height: 40px;
  width: 40px;
}

nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav a {
  color: var(--primary);
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--accent-rust);
}

footer {
  background-color: var(--primary);
  color: var(--white);
  padding: 4rem 2rem 2rem;
  margin-top: 6rem;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--accent-light);
  margin-bottom: 1.5rem;
}

.footer-section a {
  color: var(--accent-light);
  display: block;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

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

.footer-section p {
  margin-bottom: 0.5rem;
  color: var(--accent-light);
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  border-top: 1px solid rgba(237, 228, 217, 0.2);
  padding-top: 2rem;
  text-align: center;
  color: var(--accent-light);
  font-size: 0.9rem;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 6rem 2rem;
}

section.hero {
  position: relative;
  height: 600px;
  overflow: hidden;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

section.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('images/hero-section.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

section.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(47, 62, 74, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 800px;
}

.hero-content h1 {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--accent-light);
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.two-column.reverse {
  direction: rtl;
}

.two-column.reverse > * {
  direction: ltr;
}

.column-text h2 {
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.column-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 0;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

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

.card-content {
  padding: 2rem;
}

.card-content h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.card-content p {
  color: #555;
  margin-bottom: 0;
  font-size: 0.95rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

thead {
  background-color: var(--primary);
  color: var(--white);
}

th {
  padding: 1.5rem;
  text-align: left;
  font-weight: 600;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

th:last-child {
  border-right: none;
}

td {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(47, 62, 74, 0.1);
  color: #555;
}

tr:last-child td {
  border-bottom: none;
}

tbody tr:hover {
  background-color: var(--gray-light);
}

.faq-item {
  background: var(--gray-light);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--accent-rust);
  border-radius: 4px;
}

.faq-question {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.75rem;
  cursor: pointer;
}

.faq-answer {
  color: #555;
  display: none;
  margin-top: 1rem;
  line-height: 1.6;
}

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

.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--primary);
}

input[type="email"],
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid rgba(47, 62, 74, 0.2);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--primary);
  transition: border-color 0.3s ease;
}

input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent-rust);
}

textarea {
  resize: vertical;
  min-height: 150px;
}

.disclaimer {
  background: var(--accent-light);
  padding: 1.5rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  color: var(--primary);
  font-size: 0.9rem;
  line-height: 1.5;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--accent-rust), #a0522d);
  color: var(--white);
  text-decoration: none;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139, 69, 19, 0.3);
}

.btn:active {
  transform: translateY(0);
}

.btn-secondary {
  background: var(--primary);
}

.btn-secondary:hover {
  background: #1a2a35;
}

.text-center {
  text-align: center;
}

.text-italic {
  font-style: italic;
}

.highlight {
  color: var(--accent-rust);
  font-weight: 600;
}

.disclaimer-block {
  background: rgba(139, 69, 19, 0.1);
  border-left: 4px solid var(--accent-rust);
  padding: 2rem;
  margin: 3rem 0;
  border-radius: 4px;
}

.disclaimer-block h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.disclaimer-block p {
  color: #555;
  margin-bottom: 0.75rem;
}

.list-styled {
  list-style: none;
  padding-left: 0;
}

.list-styled li {
  padding-left: 2rem;
  margin-bottom: 1rem;
  position: relative;
  color: #555;
}

.list-styled li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--accent-olive);
  font-weight: bold;
}

.intro-text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 2rem;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.section-title p {
  color: #777;
  font-size: 1.1rem;
}

.infographic {
  background: var(--accent-light);
  padding: 3rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.infographic h3 {
  color: var(--primary);
  text-align: center;
  margin-bottom: 2rem;
}

.seasonal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.seasonal-item h4 {
  color: var(--primary);
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.seasonal-item img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  color: var(--white);
  padding: 1.5rem 2rem;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.15);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-message {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.5;
}

.cookie-message a {
  color: var(--accent-light);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-accept {
  background: var(--accent-rust);
  color: var(--white);
}

.cookie-accept:hover {
  opacity: 0.9;
}

.cookie-reject {
  background: transparent;
  color: var(--accent-light);
  border: 1px solid var(--accent-light);
}

.cookie-reject:hover {
  background: rgba(237, 228, 217, 0.1);
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  section {
    padding: 3rem 1rem;
  }

  .two-column {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .header-container {
    padding: 0 1rem;
  }

  nav {
    gap: 1rem;
    font-size: 0.9rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .seasonal-grid {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-actions {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

.fade-in:nth-child(1) {
  animation-delay: 0s;
}

.fade-in:nth-child(2) {
  animation-delay: 0.15s;
}

.fade-in:nth-child(3) {
  animation-delay: 0.3s;
}

.fade-in:nth-child(4) {
  animation-delay: 0.45s;
}
