:root {
  --primary-color: #C2E0FF;
  --accent-1: #66B2FF;
  --accent-2: #FFD700;
  --accent-3: #8BC34A;
  --text-dark: #222222;
  --text-light: #555555;
  --white: #FFFFFF;
  --border-color: #E0E0E0;
  --radius: 8px;
}

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

html, body {
  height: 100%;
}

body {
  font-family: 'Open Sans', 'Roboto', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--white);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 1rem 2rem;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text-dark);
  text-decoration: none;
}

.navbar-brand img {
  height: 40px;
  margin-right: 10px;
  vertical-align: middle;
}

nav a {
  color: var(--text-dark);
  text-decoration: none;
  margin-left: 2rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

main {
  margin-top: 80px;
  min-height: calc(100vh - 80px);
}

section {
  padding: 80px 0;
  clear: both;
}

.hero-section {
  background: url(images/hero-fruits.jpg) center/cover;
  background-attachment: fixed;
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
}

h1 {
  font-family: 'Montserrat', 'Lato', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.2;
  word-wrap: break-word;
}

h2 {
  font-family: 'Montserrat', 'Lato', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  word-wrap: break-word;
}

h3 {
  font-family: 'Montserrat', 'Lato', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

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

.section-full-width {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.section-content {
  background-color: var(--primary-color);
  padding: 80px 40px;
}

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

.two-column img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius);
}

.three-column {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

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

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

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

.card h3 {
  color: var(--accent-1);
  margin-bottom: 1rem;
}

.card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.table-wrapper {
  background-color: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 60px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th {
  background-color: var(--accent-1);
  color: var(--white);
  padding: 1.5rem;
  text-align: left;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
}

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

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

tr:nth-child(even) {
  background-color: #F9F9F9;
}

ul, ol {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

li {
  margin-bottom: 0.8rem;
  color: var(--text-light);
  line-height: 1.8;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--accent-1);
  color: var(--white);
  text-decoration: none;
  border-radius: var(--radius);
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
}

.btn:hover {
  background-color: #4A8FCC;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--accent-3);
}

.btn-secondary:hover {
  background-color: #7CB342;
}

.disclaimer-box {
  background-color: #FFF8E1;
  border-left: 4px solid var(--accent-2);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: var(--radius);
}

.disclaimer-box strong {
  color: var(--text-dark);
}

footer {
  background-color: var(--text-dark);
  color: var(--white);
  padding: 3rem 2rem;
  margin-top: 80px;
}

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

.footer-section h4 {
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 1rem;
  color: var(--accent-1);
  font-size: 1.1rem;
}

.footer-section p, .footer-section a {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #CCCCCC;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid #444444;
  text-align: center;
  font-size: 0.9rem;
  color: #AAAAAA;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: var(--white);
  padding: 1.5rem 2rem;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  max-height: 150px;
  overflow-y: auto;
}

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

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

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

.cookie-buttons button {
  padding: 10px 20px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.cookie-accept:hover {
  background-color: #4A8FCC;
}

.cookie-reject {
  background-color: #666666;
  color: var(--white);
}

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

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

.cookie-learn:hover {
  background-color: rgba(102, 178, 255, 0.1);
}

@media (max-width: 768px) {
  header {
    padding: 0.8rem 1rem;
  }

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

  nav a {
    margin-left: 1rem;
    font-size: 0.9rem;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  section {
    padding: 40px 0;
  }

  .two-column,
  .three-column {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .section-content {
    padding: 40px 20px;
  }

  .cookie-banner {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }

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

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

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

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

  h2 {
    font-size: 1.3rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  p {
    font-size: 0.95rem;
  }

  nav a {
    margin-left: 0.5rem;
    font-size: 0.8rem;
  }

  .hero-section {
    height: 80vh;
  }

  .hero-content {
    padding: 1rem;
  }

  section {
    padding: 30px 0;
  }

  .section-content {
    padding: 30px 15px;
  }

  table {
    font-size: 0.9rem;
  }

  th, td {
    padding: 1rem 0.5rem;
  }
}
