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

:root {
  --primary: #4CAF50;
  --accent1: #E57373;
  --accent2: #F5DEB3;
  --accent3: #004D40;
  --light-gray: #f5f5f5;
  --dark-gray: #333333;
  --white: #ffffff;
  --border-color: #e0e0e0;
}

html, body {
  width: 100%;
  height: 100%;
}

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

h1, h2, h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 20px;
  text-align: left;
}

h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
}

h2 {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 25px;
}

h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 15px;
}

p {
  margin-bottom: 15px;
  line-height: 1.6;
  font-size: 16px;
}

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

a:hover {
  color: var(--accent3);
  text-decoration: underline;
}

button, .btn, .btn-primary {
  padding: 12px 30px;
  border-radius: 8px;
  border: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: var(--primary);
  color: var(--white);
}

button:hover, .btn:hover, .btn-primary:hover {
  background-color: var(--accent3);
  transform: scale(1.02);
}

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

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  color: var(--dark-gray);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary);
}

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

.section {
  padding: 100px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.section-dark {
  background-color: var(--light-gray);
}

.section-white {
  background-color: var(--white);
}

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

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

.three-column {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

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

.card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

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

.card h3 {
  color: var(--primary);
  margin-bottom: 15px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--dark-gray);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

footer {
  background-color: var(--accent3);
  color: var(--white);
  padding: 60px 20px;
  margin-top: 60px;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.footer-section h3 {
  color: var(--accent2);
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section a {
  color: var(--white);
  transition: color 0.3s ease;
}

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

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 14px;
}

.disclaimer {
  background-color: var(--accent2);
  padding: 20px;
  border-radius: 8px;
  margin: 30px 0;
  border-left: 4px solid var(--primary);
}

.disclaimer p {
  margin: 0;
  color: var(--dark-gray);
  font-size: 14px;
}

.hero {
  background: linear-gradient(rgba(76, 175, 80, 0.3), rgba(76, 175, 80, 0.3)), url(images/hero.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  margin-top: 80px;
}

.hero-content h1 {
  font-size: 56px;
  color: var(--white);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 20px;
  color: var(--white);
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--accent3);
  color: var(--white);
  padding: 20px;
  z-index: 999;
  display: none;
  box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.2);
}

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

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

.cookie-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.5;
}

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

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

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

.cookie-accept:hover {
  background-color: #45a049;
}

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

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

.cookie-learn {
  background-color: var(--accent2);
  color: var(--dark-gray);
}

.cookie-learn:hover {
  background-color: #f5d89a;
}

.faq-item {
  margin-bottom: 20px;
  padding: 20px;
  background-color: var(--white);
  border-radius: 8px;
  border-left: 4px solid var(--primary);
}

.faq-question {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--accent3);
}

.faq-answer {
  display: none;
  color: var(--dark-gray);
  line-height: 1.6;
}

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

@media (max-width: 768px) {
  .nav-links {
    gap: 15px;
    font-size: 14px;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 18px;
  }

  .two-column {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .section {
    padding: 60px 20px;
  }

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

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }

  .hero {
    height: 400px;
  }

  .hero-content h1 {
    font-size: 36px;
  }
}
