@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Lora:wght@400;600&display=swap');

:root {
  --primary-green: #2E8B57;
  --accent-orange: #F4A261;
  --accent-blue: #264653;
  --accent-yellow: #E9C46A;
  --neutral-light: #F9F9F9;
  --neutral-gray: #6B7280;
  --neutral-dark: #1F2937;
  --white: #FFFFFF;
}

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

html, body {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--neutral-dark);
}

h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  margin-top: 3rem;
}

h3 {
  font-size: 1.5rem;
  line-height: 1.4;
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}

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

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

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

header .navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
}

header .logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-green);
}

header .logo img {
  width: 40px;
  height: 40px;
  margin-right: 0.5rem;
}

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

header .nav-links a {
  color: var(--neutral-dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

header .nav-links a:hover,
header .nav-links a.active {
  color: var(--primary-green);
}

body {
  padding-top: 80px;
}

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

footer {
  background-color: var(--neutral-dark);
  color: var(--white);
  padding: 3rem 1rem;
  margin-top: 5rem;
  font-size: 0.95rem;
  line-height: 1.8;
}

footer a {
  color: var(--accent-orange);
}

footer a:hover {
  color: var(--accent-yellow);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
}

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

.footer-section h4 {
  color: var(--accent-orange);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-section p {
  margin-bottom: 0.75rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
}

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

.section {
  padding: 4rem 1rem;
}

.hero {
  position: relative;
  height: 600px;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  margin-top: -80px;
  padding-top: 80px;
}

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

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

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

.hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  margin-bottom: 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-green);
}

.section-subtitle {
  color: var(--neutral-gray);
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

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

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

.two-column-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
}

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

.card {
  background-color: var(--neutral-light);
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary-green);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card h3 {
  color: var(--primary-green);
  margin-top: 0;
}

.table-responsive {
  overflow-x: auto;
  margin: 2rem 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}

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

table th {
  padding: 1rem;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #E5E7EB;
}

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

.highlight-box {
  background-color: var(--neutral-light);
  border-left: 5px solid var(--accent-orange);
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 4px;
}

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

.highlight-text {
  color: var(--primary-green);
  font-weight: 600;
}

.list-styled {
  list-style: none;
  margin: 1.5rem 0;
}

.list-styled li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
}

.list-styled li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-green);
  font-weight: bold;
}

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: var(--primary-green);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-decoration: none;
  margin: 0.5rem 0.5rem 0.5rem 0;
}

.btn:hover {
  background-color: var(--accent-blue);
  transform: scale(1.05);
}

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

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

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-green);
  color: var(--primary-green);
}

.btn-outline:hover {
  background-color: var(--primary-green);
  color: var(--white);
}

form {
  max-width: 600px;
  margin: 2rem auto;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--neutral-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #D1D5DB;
  border-radius: 4px;
  font-family: 'Lora', serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

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

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

.disclaimer {
  background-color: #FEF3C7;
  border-left: 4px solid var(--accent-yellow);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.disclaimer p {
  margin-bottom: 0.5rem;
}

.disclaimer p:last-child {
  margin-bottom: 0;
}

.message-box {
  background-color: var(--neutral-light);
  border-left: 4px solid var(--primary-green);
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 4px;
  text-align: center;
}

.message-box h2 {
  color: var(--primary-green);
  margin-top: 0;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--neutral-dark);
  color: var(--white);
  padding: 1.5rem;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
  z-index: 50;
  max-height: 200px;
  overflow-y: auto;
  display: none;
}

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

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

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

.cookie-text a {
  color: var(--accent-orange);
}

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

.cookie-btn {
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}

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

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

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

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

.cookie-btn-learn {
  background-color: var(--accent-orange);
  color: var(--white);
}

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

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

  h2 {
    font-size: 1.75rem;
  }

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

  .hero {
    height: 400px;
  }

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

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

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

  footer {
    padding: 2rem 1rem;
  }

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

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

  .cookie-buttons {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
  }

  table {
    font-size: 0.9rem;
  }

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

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

  h2 {
    font-size: 1.25rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  header .logo {
    font-size: 1.2rem;
  }

  header .logo img {
    width: 30px;
    height: 30px;
  }

  header .nav-links {
    gap: 0.75rem;
    font-size: 0.8rem;
  }

  .hero {
    height: 300px;
  }

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

  .section {
    padding: 2rem 1rem;
  }

  .card {
    padding: 1.5rem;
  }

  .cookie-banner {
    max-height: none;
  }

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

  .cookie-btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
}
