:root {
  --color-primary: #E0F2F7;
  --color-accent-1: #A7D9E7;
  --color-accent-2: #FFB8B8;
  --color-neutral: #6C7A89;
  --color-white: #FFFFFF;
  --color-dark: #2C3E50;
  --color-light-gray: #F8FAFB;
}

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

html, body {
  height: 100%;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Open Sans', 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.2rem;
  color: var(--color-dark);
}

h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}

h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.25rem;
  line-height: 1.7;
  font-size: 1rem;
}

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

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

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--color-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  z-index: 1000;
}

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

.navbar-brand {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-dark);
  cursor: pointer;
  text-decoration: none;
}

.navbar-brand:hover {
  color: var(--color-accent-1);
}

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

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

.navbar-nav a:hover,
.navbar-nav a.active {
  color: var(--color-accent-1);
  text-decoration: none;
}

body {
  padding-top: 80px;
}

main {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 80px);
}

.container-wide {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

section {
  padding: 4rem 2rem;
}

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

.hero-block {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent-1) 100%);
  text-align: center;
}

.hero-block h1 {
  color: var(--color-dark);
  margin-bottom: 1.5rem;
}

.hero-block .lead-text {
  font-size: 1.25rem;
  color: var(--color-neutral);
  margin-bottom: 2rem;
}

.hero-image {
  max-width: 100%;
  height: auto;
  max-height: 300px;
  border-radius: 8px;
  object-fit: cover;
  margin-top: 2rem;
}

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

.two-column img {
  max-width: 100%;
  height: auto;
  max-height: 350px;
  border-radius: 8px;
  object-fit: cover;
}

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

.card {
  background-color: var(--color-white);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-decoration: none;
  color: var(--color-dark);
}

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

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

.card p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.card-image {
  max-width: 100%;
  height: 200px;
  border-radius: 6px;
  object-fit: cover;
  margin-bottom: 1.5rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
  background-color: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

th {
  background-color: var(--color-accent-1);
  color: var(--color-dark);
  padding: 1.25rem;
  text-align: left;
  font-weight: 700;
}

td {
  padding: 1.25rem;
  border-bottom: 1px solid #E8E8E8;
}

tr:last-child td {
  border-bottom: none;
}

ul, ol {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

li {
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

.list-items {
  list-style-type: none;
  margin-left: 0;
}

.list-items li {
  padding-left: 1.75rem;
  position: relative;
  margin-bottom: 1rem;
}

.list-items li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-accent-1);
  font-weight: bold;
}

.faq-item {
  margin-bottom: 2rem;
  background-color: var(--color-white);
  border-left: 4px solid var(--color-accent-1);
  padding: 1.5rem;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.faq-question {
  color: var(--color-neutral);
  font-weight: 700;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.faq-answer {
  color: var(--color-dark);
  font-size: 0.95rem;
  line-height: 1.7;
}

button, .btn {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  background-color: var(--color-accent-1);
  color: var(--color-white);
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
  font-family: inherit;
}

button:hover, .btn:hover {
  background-color: var(--color-neutral);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

button:active, .btn:active {
  transform: translateY(0);
}

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

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

.disclaimer {
  background-color: #FFF3CD;
  border-left: 4px solid #FFC107;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-radius: 4px;
  font-size: 0.95rem;
  color: #856404;
}

.disclaimer strong {
  color: #333;
}

footer {
  background-color: var(--color-dark);
  color: var(--color-white);
  padding: 3rem 2rem;
  margin-top: auto;
  border-top: 2px solid var(--color-accent-1);
}

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

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

.footer-section p, .footer-section a {
  font-size: 0.9rem;
  color: #E8E8E8;
  margin-bottom: 0.5rem;
}

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

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

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

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

input[type="email"],
input[type="text"],
textarea {
  width: 100%;
  padding: 0.875rem;
  border: 1px solid #D0D0D0;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

input[type="email"]:focus,
input[type="text"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-accent-1);
  box-shadow: 0 0 0 3px rgba(167, 217, 231, 0.1);
}

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

.form-disclaimer {
  background-color: #E8F4F8;
  border-left: 4px solid var(--color-accent-1);
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-radius: 4px;
  font-size: 0.9rem;
  color: var(--color-dark);
}

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

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

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

.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.5;
}

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

.cookie-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-size: 0.9rem;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-btn-accept {
  background-color: var(--color-accent-1);
  color: var(--color-dark);
}

.cookie-btn-accept:hover {
  background-color: var(--color-accent-2);
  transform: translateY(-2px);
}

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

.cookie-btn-reject:hover {
  background-color: var(--color-accent-1);
  color: var(--color-dark);
}

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

.cookie-btn-more:hover {
  background-color: var(--color-white);
  color: var(--color-dark);
}

.thank-you-box {
  text-align: center;
  padding: 3rem;
  background-color: var(--color-light-gray);
  border-radius: 8px;
  margin-bottom: 2rem;
}

.thank-you-box h2 {
  color: var(--color-accent-1);
  margin-bottom: 1rem;
}

.thank-you-box p {
  color: var(--color-neutral);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

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

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .navbar {
    padding: 0.75rem 1rem;
  }

  .navbar-brand {
    font-size: 1.25rem;
  }

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

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

  .hero-block h1 {
    font-size: 1.75rem;
  }

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

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

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

  .cookie-btn {
    width: 100%;
    text-align: center;
  }

  section {
    padding: 2.5rem 1rem;
  }

  .container-wide {
    padding: 0 1rem;
  }

  body {
    padding-top: 70px;
  }

  table {
    font-size: 0.9rem;
  }

  th, td {
    padding: 0.75rem;
  }
}

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

  h2 {
    font-size: 1.25rem;
  }

  h3 {
    font-size: 1rem;
  }

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

  button, .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }

  .hero-block {
    padding: 3rem 1rem;
  }
}
