:root {
  --primary: #2F4F4F;
  --secondary: #B0C4DE;
  --accent-1: #FF9933;
  --accent-2: #8FBC8F;
  --neutral-light: #F8F8F8;
  --neutral-dark: #333333;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', 'Segoe UI', sans-serif;
  background-color: var(--neutral-light);
  color: var(--neutral-dark);
  line-height: 1.6;
  letter-spacing: 0.3px;
}

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

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

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo:hover {
  color: var(--accent-1);
  transition: color 0.3s ease;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

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

nav a.active {
  border-bottom: 2px solid var(--accent-1);
  padding-bottom: 0.25rem;
}

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

h1 {
  font-family: 'Open Sans', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin: 2rem 0 1rem 0;
  line-height: 1.2;
}

h2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin: 2rem 0 1rem 0;
  line-height: 1.2;
}

h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  margin: 1.5rem 0 0.75rem 0;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--neutral-dark);
}

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

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

.hero {
  background-size: cover;
  background-position: center;
  color: white;
  padding: 6rem 2rem;
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(47, 79, 79, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

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

.hero .subtitle {
  font-size: 1.5rem;
  color: var(--secondary);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.section {
  padding: 5rem 2rem;
  border-top: 1px solid #e0e0e0;
}

.section:first-of-type {
  border-top: none;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  margin-bottom: 1rem;
}

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

.two-column.reverse {
  direction: rtl;
}

.two-column.reverse > * {
  direction: ltr;
}

.two-column-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.text-content {
  line-height: 1.8;
}

.text-content p {
  margin-bottom: 1.25rem;
}

.text-content ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.text-content li {
  margin-bottom: 0.75rem;
  line-height: 1.8;
}

.text-content strong {
  color: var(--primary);
  font-weight: 600;
}

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

.card {
  background: white;
  padding: 2rem;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  border-radius: 4px;
}

.card:hover {
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}

.card h3 {
  margin-bottom: 1rem;
}

.card p {
  font-size: 0.95rem;
  line-height: 1.7;
}

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

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

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

.cta-button:hover {
  background-color: var(--primary);
  transform: translateY(-2px);
  color: white;
  text-decoration: none;
}

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

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

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

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

footer h3 {
  color: var(--secondary);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

footer ul {
  list-style: none;
}

footer li {
  margin-bottom: 0.75rem;
}

footer a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

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

footer .contact-info {
  font-size: 0.95rem;
  line-height: 1.8;
}

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

footer .footer-copyright {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d0d0d0;
  border-radius: 2px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-1);
  box-shadow: 0 0 0 3px rgba(255, 153, 51, 0.1);
}

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

.form-disclaimer {
  background-color: #f5f5f5;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-radius: 2px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--neutral-dark);
}

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

.cookie-banner.hidden {
  display: none;
}

.cookie-message {
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.5;
}

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

.cookie-button {
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.cookie-button-accept {
  background-color: var(--accent-1);
  color: white;
}

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

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

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

.cookie-button-learn {
  background-color: var(--secondary);
  color: var(--primary);
}

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

table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background-color: white;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

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

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

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

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

.stat-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  padding: 2rem;
  border-radius: 4px;
  text-align: center;
  margin: 1.5rem 0;
}

.stat-box h3 {
  color: white;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.stat-box p {
  color: rgba(255,255,255,0.9);
  margin: 0;
}

.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline-item {
  margin-bottom: 2rem;
  padding-left: 2rem;
  border-left: 3px solid var(--accent-1);
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

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

.glossary-item {
  padding: 1.5rem;
  background-color: white;
  border-left: 4px solid var(--accent-1);
  border-radius: 2px;
}

.glossary-item dt {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.glossary-item dd {
  margin: 0;
  color: var(--neutral-dark);
  line-height: 1.7;
}

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

.matrix-item {
  background-color: white;
  padding: 1.5rem;
  text-align: center;
  border: 2px solid var(--secondary);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.matrix-item:hover {
  border-color: var(--accent-1);
  background-color: #fafaf8;
}

.matrix-item h4 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.breadcrumb {
  font-size: 0.9rem;
  margin-bottom: 2rem;
  color: var(--neutral-dark);
}

.breadcrumb a {
  color: var(--accent-1);
}

.thank-you-container {
  text-align: center;
  padding: 5rem 2rem;
}

.thank-you-container h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

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

.return-link {
  display: inline-block;
  margin-top: 2rem;
  padding: 1rem 2rem;
  background-color: var(--primary);
  color: white;
  text-decoration: none;
  border-radius: 2px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.return-link:hover {
  background-color: var(--accent-1);
}

.highlight {
  background-color: rgba(255, 153, 51, 0.1);
  padding: 0.2rem 0.4rem;
  border-radius: 2px;
}

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

  h2 {
    font-size: 1.5rem;
  }

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

  .hero .subtitle {
    font-size: 1.1rem;
  }

  .container {
    padding: 0 1rem;
  }

  header .container {
    padding: 0 1rem;
  }

  nav ul {
    gap: 1rem;
    font-size: 0.85rem;
  }

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

  .two-column.reverse {
    direction: ltr;
  }

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

  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 1rem;
  }

  .cookie-message {
    order: 1;
  }

  .cookie-buttons {
    order: 2;
    flex-direction: column;
  }

  .cookie-button {
    width: 100%;
  }

  .section {
    padding: 3rem 1rem;
  }

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

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

  h2 {
    font-size: 1.25rem;
  }

  .hero {
    padding: 4rem 1rem;
    min-height: 300px;
  }

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

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

  nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }

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

  .thank-you-container {
    padding: 3rem 1rem;
  }
}
