:root {
  --charcoal-peak: #2F3E4A;
  --alpine-moss: #5E8C61;
  --golden-ridge: #C99A4D;
  --fresh-snow: #F5F6F5;
  --text-dark: #2F3E4A;
  --text-light: #F5F6F5;
  --border-color: #5E8C61;
  --shadow-light: rgba(47, 62, 74, 0.15);
  --transition: 0.45s ease;
}

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

html, body {
  font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background-color: var(--fresh-snow);
  line-height: 1.6;
}

body {
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

h1 {
  font-size: 4.2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  color: var(--text-dark);
}

h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

h4 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

p {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--text-dark);
  line-height: 1.6;
}

a {
  color: var(--alpine-moss);
  text-decoration: none;
  transition: color var(--transition);
}

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

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--charcoal-peak);
  color: var(--text-light);
  padding: 1rem 0;
  box-shadow: 0 2px 8px var(--shadow-light);
}

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

.logo, .logo a {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--golden-ridge);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 1px;
}

.logo a:hover {
  color: var(--alpine-moss);
}

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

nav a {
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color var(--transition);
}

nav a:hover {
  color: var(--golden-ridge);
  text-decoration: none;
}

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

section {
  padding: 160px 2rem;
  max-width: 1680px;
  margin: 0 auto;
}

.hero {
  background: linear-gradient(135deg, rgba(47, 62, 74, 0.9) 0%, rgba(94, 140, 97, 0.3) 100%);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
  padding: 200px 2rem 160px;
  text-align: center;
}

.hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 0;
}

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

.hero h1 {
  color: var(--text-light);
  font-size: 5rem;
  margin-bottom: 1rem;
}

.hero p {
  color: var(--text-light);
  font-size: 1.35rem;
  margin-bottom: 2rem;
  font-weight: 400;
}

.card {
  background: white;
  border: 2px solid var(--fresh-snow);
  border-radius: 8px;
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: 0 4px 12px var(--shadow-light);
}

.card:hover {
  border-color: var(--alpine-moss);
  box-shadow: 0 8px 24px rgba(94, 140, 97, 0.2);
  transform: scale(1.05);
}

.card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.card-body {
  padding: 2rem;
}

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

.card p {
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: var(--alpine-moss);
  color: white;
  border: 2px solid var(--alpine-moss);
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.btn:hover {
  background: var(--charcoal-peak);
  border-color: var(--charcoal-peak);
  color: var(--text-light);
  text-decoration: none;
}

.btn-secondary {
  background: transparent;
  color: var(--alpine-moss);
  border: 2px solid var(--alpine-moss);
}

.btn-secondary:hover {
  background: var(--alpine-moss);
  color: white;
}

footer {
  background: var(--charcoal-peak);
  color: var(--text-light);
  padding: 60px 2rem 40px;
  margin-top: 100px;
  font-size: 0.9rem;
  line-height: 1.8;
}

footer .container {
  max-width: 1680px;
}

footer h4 {
  color: var(--golden-ridge);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

footer a {
  color: var(--text-light);
}

footer a:hover {
  color: var(--golden-ridge);
}

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

.footer-section {
  flex: 1;
}

.footer-divider {
  border-top: 1px solid rgba(245, 246, 245, 0.2);
  margin: 2rem 0;
  padding-top: 2rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.educational-notice {
  background: rgba(201, 154, 77, 0.1);
  border-left: 4px solid var(--golden-ridge);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
  font-weight: 500;
  color: var(--text-dark);
}

.disclaimer {
  background: rgba(94, 140, 97, 0.08);
  border: 1px solid var(--alpine-moss);
  padding: 1.5rem;
  border-radius: 4px;
  margin: 2rem 0;
  font-size: 0.9rem;
  line-height: 1.7;
}

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

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

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

input[type="email"],
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--fresh-snow);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color var(--transition);
}

input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--alpine-moss);
}

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

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  align-items: center;
}

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

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

.full-width {
  width: 100%;
  margin: 0;
}

.text-center {
  text-align: center;
}

.text-accent {
  color: var(--alpine-moss);
  font-weight: 600;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: white;
  border: 1px solid var(--fresh-snow);
}

th, td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--fresh-snow);
}

th {
  background: var(--charcoal-peak);
  color: var(--text-light);
  font-weight: 700;
}

tr:hover {
  background: rgba(94, 140, 97, 0.05);
}

.accordion {
  margin: 2rem 0;
}

.accordion-item {
  border: 1px solid var(--fresh-snow);
  margin-bottom: 1rem;
  border-radius: 4px;
  overflow: hidden;
  background: white;
}

.accordion-header {
  background: var(--fresh-snow);
  padding: 1.25rem;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition);
}

.accordion-header:hover {
  background: rgba(94, 140, 97, 0.1);
}

.accordion-header.active {
  background: var(--alpine-moss);
  color: white;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.25rem;
}

.accordion-content.active {
  max-height: 500px;
  padding: 1.25rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--charcoal-peak);
  color: var(--text-light);
  padding: 1.5rem 2rem;
  z-index: 9999;
  display: none;
  box-shadow: 0 -2px 10px var(--shadow-light);
}

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

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

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

.cookie-text {
  flex: 1;
  min-width: 300px;
  font-size: 0.95rem;
}

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

.cookie-button {
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.cookie-accept:hover {
  background: var(--golden-ridge);
}

.cookie-reject {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
}

.cookie-reject:hover {
  border-color: var(--golden-ridge);
  color: var(--golden-ridge);
}

.cookie-learn {
  background: transparent;
  color: var(--alpine-moss);
  border: 2px solid var(--alpine-moss);
}

.cookie-learn:hover {
  background: var(--alpine-moss);
  color: white;
}

.fade-in {
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.stagger-delay-1 { animation-delay: 0.1s; }
.stagger-delay-2 { animation-delay: 0.2s; }
.stagger-delay-3 { animation-delay: 0.3s; }
.stagger-delay-4 { animation-delay: 0.4s; }

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

  h2 {
    font-size: 1.75rem;
  }

  section {
    padding: 80px 1rem;
  }

  .hero {
    padding: 100px 1rem 80px;
  }

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

  .hero p {
    font-size: 1rem;
  }

  header .container {
    flex-direction: column;
    gap: 1rem;
  }

  nav ul {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    width: 100%;
  }

  nav a {
    display: block;
    padding: 0.5rem 0;
  }

  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
