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

:root {
  --color-primary: #1D3A2B;
  --color-accent-light: #F0E2CF;
  --color-accent-green: #9CB89B;
  --color-accent-dark: #4B5E4A;
  --color-text: #1D3A2B;
  --color-bg: #FFFFFF;
  --color-border: #E8E8E8;
  --transition-duration: 0.4s;
  --transition-timing: ease-out;
}

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

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

body {
  font-family: 'Roboto', sans-serif;
  font-size: 17.8px;
  line-height: 1.78;
  color: var(--color-text);
  background-color: var(--color-bg);
}

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

h1 {
  font-size: 68px;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 700;
}

h2 {
  font-size: 48px;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

h3 {
  font-size: 32px;
  line-height: 1.4;
  margin-bottom: 1rem;
  font-weight: 700;
}

p {
  margin-bottom: 1rem;
  line-height: 1.78;
}

a {
  color: var(--color-accent-green);
  text-decoration: none;
  transition: color var(--transition-duration) var(--transition-timing);
}

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

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  z-index: 1000;
  transition: border-color var(--transition-duration) var(--transition-timing);
}

header.scrolled {
  border-bottom-color: var(--color-accent-green);
}

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

.navbar-brand {
  font-family: 'Anton', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.navbar-nav {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.navbar-nav a {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  color: var(--color-text);
  transition: color var(--transition-duration) var(--transition-timing);
}

.navbar-nav a:hover {
  color: var(--color-accent-green);
}

.navbar-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--color-text);
}

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

.hero {
  width: 100%;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(29, 58, 43, 0.3);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 600px;
  padding: 0 2rem;
}

.hero-content h1 {
  color: white;
  font-size: 68px;
  margin-bottom: 1rem;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 20px;
}

section {
  padding: 80px 2rem;
}

.section-max-width {
  max-width: 1590px;
  margin: 0 auto;
}

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

.intro-section p {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 18px;
  line-height: 1.8;
}

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

.card {
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  padding: 2rem;
  text-align: center;
  transition: transform var(--transition-duration) var(--transition-timing), box-shadow var(--transition-duration) var(--transition-timing), color var(--transition-duration) var(--transition-timing);
  cursor: pointer;
}

.card:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 24px rgba(29, 58, 43, 0.15);
}

.card:hover h3,
.card:hover p {
  color: var(--color-accent-green);
}

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

.card h3 {
  font-size: 28px;
  margin-bottom: 1rem;
}

.card p {
  font-size: 15px;
  line-height: 1.6;
}

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

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

.two-column-reverse:nth-child(even) {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}

.two-column-reverse:nth-child(even) > * {
  direction: ltr;
}

.two-column img {
  width: 100%;
  height: auto;
  object-fit: cover;
  max-width: 500px;
}

.full-width-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  margin: 2rem 0;
}

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

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

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

th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
}

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

tbody tr:hover {
  background-color: rgba(156, 184, 155, 0.1);
}

.bullet-list {
  max-width: 800px;
  margin: 2rem auto;
  list-style: none;
  padding: 0;
}

.bullet-list li {
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
  line-height: 1.8;
}

.bullet-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-accent-green);
  font-weight: 700;
  font-size: 20px;
}

.cta-section {
  text-align: center;
  padding: 4rem 2rem;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent-dark) 100%);
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: transform var(--transition-duration) var(--transition-timing), box-shadow var(--transition-duration) var(--transition-timing);
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(29, 58, 43, 0.3);
}

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

footer {
  background-color: var(--color-primary);
  color: white;
  padding: 3rem 2rem;
  margin-top: 5rem;
}

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

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

.footer-section p, .footer-section a, .footer-section li {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 1.8;
}

.footer-section a {
  color: var(--color-accent-light);
  transition: color var(--transition-duration) var(--transition-timing);
}

.footer-section a:hover {
  color: white;
}

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

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-primary);
  color: white;
  padding: 1.5rem 2rem;
  z-index: 999;
  display: none;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner.active {
  display: flex;
}

.cookie-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.6;
  min-width: 250px;
}

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

.cookie-button {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-duration) var(--transition-timing);
  font-size: 14px;
  white-space: nowrap;
}

.cookie-button.accept {
  background-color: var(--color-accent-green);
  color: var(--color-primary);
}

.cookie-button.accept:hover {
  background-color: white;
}

.cookie-button.reject {
  background-color: transparent;
  color: white;
  border: 1px solid white;
}

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

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

.cookie-button.learn:hover {
  background-color: rgba(240, 226, 207, 0.1);
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  transition: border-color var(--transition-duration) var(--transition-timing);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent-green);
  box-shadow: 0 0 0 3px rgba(156, 184, 155, 0.1);
}

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

.disclaimer {
  background-color: rgba(156, 184, 155, 0.05);
  border-left: 4px solid var(--color-accent-green);
  padding: 1.5rem;
  margin: 2rem 0;
  font-size: 14px;
  line-height: 1.8;
  border-radius: 4px;
}

.disclaimer strong {
  color: var(--color-primary);
}

.educational-notice {
  background-color: rgba(29, 58, 43, 0.05);
  border: 1px solid var(--color-accent-green);
  padding: 2rem;
  margin: 2rem 0;
  text-align: center;
  border-radius: 4px;
}

.educational-notice p {
  font-weight: 600;
  color: var(--color-primary);
  margin: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

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

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 24px;
  }

  body {
    font-size: 16px;
  }

  .navbar-nav {
    display: none;
  }

  .navbar-toggle {
    display: block;
  }

  .navbar-nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--color-bg);
    padding: 1rem;
    gap: 1rem;
  }

  section {
    padding: 60px 1.5rem;
  }

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

  .two-column-reverse:nth-child(even) {
    direction: ltr;
  }

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

  .hero-content p {
    font-size: 16px;
  }

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

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

  .cookie-buttons {
    width: 100%;
  }

  .cookie-button {
    flex: 1;
    min-width: 120px;
  }

  footer {
    padding: 2rem 1.5rem;
  }

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

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

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 18px;
  }

  body {
    font-size: 15px;
  }

  section {
    padding: 40px 1rem;
  }

  .hero-content {
    padding: 0 1rem;
  }

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

  .card-container {
    gap: 1rem;
  }

  .cta-button {
    padding: 0.75rem 1.5rem;
    font-size: 14px;
  }
}
