:root {
  --primary-color: #2E8B57;
  --accent-blue: #66B2FF;
  --accent-gold: #FFD700;
  --accent-orange: #FF8C00;
  --text-dark: #1a1a1a;
  --text-light: #f5f5f5;
  --bg-light: #fafafa;
  --border-light: #e0e0e0;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: var(--text-light);
  color: var(--text-dark);
  line-height: 1.6;
}

.header {
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

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

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

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

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

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

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

.nav-links a.active {
  color: var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
}

main {
  margin-top: 80px;
  padding-top: 2rem;
}

.hero {
  background-color: var(--text-light);
  padding: 4rem 2rem;
  text-align: center;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

.hero-text p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

section:nth-child(even) {
  background-color: var(--bg-light);
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 1.5rem 0 0.5rem 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.content-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}

.content-text ul, .content-text ol {
  margin: 1rem 0;
  padding-left: 2rem;
}

.content-text li {
  margin: 0.5rem 0;
  color: #555;
}

.content-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

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

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

.card h3 {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-top: 0;
}

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

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

.disclaimer p {
  margin: 0;
  color: #333;
  font-size: 0.95rem;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.cta-button:hover {
  background-color: #1f6b40;
}

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

.cta-button-secondary:hover {
  background-color: var(--primary-color);
  color: white;
}

.footer {
  background-color: var(--text-dark);
  color: var(--text-light);
  padding: 3rem 2rem;
  margin-top: 4rem;
}

.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 h3 {
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.footer-section p {
  color: #ccc;
  margin: 0.5rem 0;
  font-size: 0.95rem;
}

.footer-section a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

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

.form-disclaimer {
  background-color: #f0f8f4;
  border: 1px solid var(--primary-color);
  border-radius: 4px;
  padding: 1rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: #333;
}

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

.cookie-banner.show {
  display: block;
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

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

.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: 0.6rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

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

.cookie-buttons .accept:hover {
  background-color: #1f6b40;
}

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

.cookie-buttons .decline:hover {
  background-color: var(--text-light);
  color: var(--text-dark);
}

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

.cookie-buttons .learn-more:hover {
  background-color: var(--primary-color);
  color: white;
}

.policy-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  background-color: white;
  border-radius: 8px;
  line-height: 1.8;
}

.policy-container h1 {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.policy-container .effective-date {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 2rem;
  font-style: italic;
}

.policy-container h2 {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.policy-container p {
  color: #333;
  margin-bottom: 1rem;
}

.policy-container ul {
  margin: 1rem 0;
  padding-left: 2rem;
}

.policy-container li {
  color: #333;
  margin-bottom: 0.5rem;
}

.thank-you-container {
  text-align: center;
  padding: 4rem 2rem;
  background-color: var(--bg-light);
  border-radius: 8px;
  margin: 2rem auto;
  max-width: 600px;
}

.thank-you-container h1 {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.thank-you-container p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
}

.thank-you-container a {
  display: inline-block;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-links {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

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

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

  .section-title {
    font-size: 1.5rem;
  }

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

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

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

  main {
    margin-top: 120px;
  }
}

@media (max-width: 480px) {
  section {
    padding: 2rem 1rem;
  }

  .hero {
    padding: 2rem 1rem;
  }

  .hero-text h1 {
    font-size: 1.5rem;
  }

  .nav-links {
    gap: 0.5rem;
    font-size: 0.9rem;
  }

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

  .cookie-banner {
    padding: 1rem;
  }

  .cookie-text {
    font-size: 0.85rem;
  }
}
