:root {
  --primary-color: #B8E6C8;
  --dark-gray: #333333;
  --natural-white: #FAFAF8;
  --accent-orange: #FF6B35;
  --light-gray: #F5F5F5;
  --border-color: #E0E0E0;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--dark-gray);
  background-color: var(--natural-white);
  line-height: 1.6;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--natural-white);
  border-bottom: 1px solid var(--border-color);
  z-index: 1030;
  padding: 1rem 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--dark-gray);
  font-weight: 700;
  font-size: 1.5rem;
}

.navbar-brand img {
  width: 40px;
  height: 40px;
  margin-right: 0.5rem;
}

.navbar-nav .nav-link {
  color: var(--dark-gray) !important;
  font-weight: 500;
  transition: color 0.3s ease;
  margin: 0 0.5rem;
}

.navbar-nav .nav-link:hover {
  color: var(--accent-orange) !important;
}

main {
  padding-top: 80px;
}

.hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #A8DDB8 100%);
  padding: 4rem 0;
  text-align: center;
}

.hero-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.hero-section p {
  font-size: 1.1rem;
  color: var(--dark-gray);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.hero-image {
  max-width: 100%;
  height: auto;
  margin-top: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--border-color);
}

section:last-of-type {
  border-bottom: none;
}

h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 1.5rem;
  text-align: center;
}

h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: 1rem;
}

p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: var(--dark-gray);
}

.container-wide {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

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

.two-column.reverse {
  grid-template-columns: 1fr 1fr;
}

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

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

.card {
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.card h3 {
  margin-top: 0;
  color: var(--dark-gray);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.table-responsive {
  margin-top: 2rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}

table thead {
  background-color: var(--primary-color);
  color: var(--dark-gray);
}

table th {
  padding: 1.5rem;
  text-align: left;
  font-weight: 600;
  border-bottom: 2px solid var(--border-color);
}

table td {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

table tbody tr:hover {
  background-color: #FAFAF8;
}

.disclaimer-section {
  background-color: #FFF3E0;
  border-left: 4px solid var(--accent-orange);
  padding: 2rem;
  border-radius: 6px;
  margin: 2rem 0;
}

.disclaimer-section h3 {
  color: var(--accent-orange);
  margin-top: 0;
}

.cta-button {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--dark-gray);
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
  cursor: pointer;
  border: none;
}

.cta-button:hover {
  background-color: #A8DDB8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.cta-button:active {
  transform: translateY(0);
}

footer {
  background-color: var(--dark-gray);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 4rem;
}

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

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

.footer-section p,
.footer-section a {
  color: #DDDDD8;
  text-decoration: none;
  line-height: 1.8;
  font-size: 0.95rem;
}

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

.footer-bottom {
  text-align: center;
  border-top: 1px solid #555555;
  padding-top: 2rem;
  color: #AAAAAA;
  font-size: 0.9rem;
}

.faq-item {
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #F5F5F5;
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
  padding: 1.5rem;
  max-height: 1000px;
}

.faq-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--dark-gray);
  color: white;
  padding: 1.5rem;
  z-index: 1040;
  display: none;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
}

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

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

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

.cookie-banner-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

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

.cookie-btn-accept {
  background-color: var(--primary-color);
  color: var(--dark-gray);
}

.cookie-btn-accept:hover {
  background-color: #A8DDB8;
}

.cookie-btn-decline {
  background-color: transparent;
  color: white;
  border: 1px solid white;
}

.cookie-btn-decline:hover {
  background-color: #555555;
}

.cookie-btn-policy {
  background-color: transparent;
  color: white;
  border: 1px solid white;
}

.cookie-btn-policy:hover {
  background-color: #555555;
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 1.8rem;
  }

  .hero-section p {
    font-size: 1rem;
  }

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

  .two-column.reverse {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 1.6rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  .navbar-nav {
    flex-direction: column;
  }

  .navbar-nav .nav-link {
    padding: 0.5rem 0 !important;
    margin: 0 !important;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

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

  .cookie-banner-buttons {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
    text-align: center;
  }

  section {
    padding: 2rem 0;
  }
}

@media (max-width: 480px) {
  header {
    padding: 0.75rem 0;
  }

  .navbar-brand img {
    width: 32px;
    height: 32px;
  }

  .navbar-brand {
    font-size: 1.2rem;
  }

  .hero-section {
    padding: 2rem 0;
  }

  .hero-section h1 {
    font-size: 1.4rem;
  }

  main {
    padding-top: 70px;
  }

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

  .container-wide {
    padding: 0 0.75rem;
  }

  .two-column {
    gap: 1.5rem;
  }
}
