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

:root {
  --primary-bg: #F5F5F5;
  --accent-green: #4CAF50;
  --accent-blue: #2196F3;
  --accent-yellow: #FFC107;
  --text-dark: #333333;
  --text-light: #666666;
  --white: #FFFFFF;
  --border-light: #E0E0E0;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  background-color: var(--primary-bg);
  color: var(--text-dark);
  line-height: 1.6;
}

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

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

button, .btn {
  font-family: inherit;
}

header {
  position: sticky;
  top: 0;
  background-color: var(--white);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

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

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

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

.navbar-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

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

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

.footer-section h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.footer-section p,
.footer-section li {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
}

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

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: var(--accent-blue);
  text-decoration: none;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid var(--border-light);
  padding-top: 2rem;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

.footer-disclaimer {
  text-align: center;
  font-weight: 500;
  color: var(--accent-blue);
  margin-bottom: 1rem;
}

main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-wide {
  padding: 4rem 2rem;
}

.section {
  padding: 3rem 0;
  margin: 0;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
}

p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.7;
}

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

.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 4rem; }
.p-3 { padding: 3rem; }
.py-4 { padding: 4rem 0; }

.hero-section {
  background-color: var(--white);
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  border-radius: 8px;
}

.hero-content h1 {
  color: var(--accent-green);
  margin-bottom: 1.5rem;
}

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

.two-column-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background-color: var(--white);
  padding: 3rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

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

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

.two-column-content h2 {
  color: var(--accent-blue);
}

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

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

.card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid var(--accent-green);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

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

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

.list-section {
  background-color: var(--white);
  padding: 3rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.list-section h2 {
  color: var(--accent-yellow);
  border-bottom: 2px solid var(--accent-yellow);
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}

.list-section ul {
  list-style: none;
  padding: 0;
}

.list-section li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  gap: 1rem;
}

.list-section li:last-child {
  border-bottom: none;
}

.list-section li:before {
  content: "✓";
  color: var(--accent-green);
  font-weight: bold;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.list-section ul ul {
  margin-left: 2rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.list-section ul ul li:before {
  content: "→";
  color: var(--accent-blue);
}

.table-section {
  background-color: var(--white);
  padding: 3rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  overflow-x: auto;
}

.table-section h2 {
  color: var(--accent-green);
  margin-bottom: 2rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

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

table th {
  padding: 1.2rem;
  text-align: left;
  font-weight: 600;
  color: var(--accent-blue);
  border-bottom: 2px solid var(--accent-blue);
}

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

table tbody tr:hover {
  background-color: rgba(76, 175, 80, 0.05);
}

.disclaimer-box {
  background-color: rgba(33, 150, 243, 0.08);
  border-left: 4px solid var(--accent-blue);
  padding: 2rem;
  border-radius: 6px;
  margin: 2rem 0;
}

.disclaimer-box h3 {
  color: var(--accent-blue);
  margin-bottom: 0.8rem;
}

.disclaimer-box p {
  font-size: 0.95rem;
  color: var(--text-light);
}

.cta-link {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  background-color: var(--accent-green);
  color: var(--white);
  border-radius: 6px;
  font-weight: 500;
  transition: background-color 0.3s ease;
  text-decoration: none;
  margin-top: 1rem;
}

.cta-link:hover {
  background-color: #45a049;
  color: var(--white);
}

.cta-section {
  background: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
  color: var(--white);
  padding: 3rem;
  border-radius: 8px;
  text-align: center;
  margin: 3rem 0;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1.5rem;
}

.contact-form {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: 8px;
  max-width: 600px;
  margin: 2rem auto;
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-blue);
}

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

.form-disclaimer {
  background-color: var(--primary-bg);
  padding: 1.5rem;
  border-radius: 6px;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--accent-yellow);
}

.btn-submit {
  background-color: var(--accent-green);
  color: var(--white);
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
}

.btn-submit:hover {
  background-color: #45a049;
}

.faq-item {
  background-color: var(--white);
  margin-bottom: 1.5rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-question {
  padding: 1.5rem;
  background-color: var(--primary-bg);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  color: var(--text-dark);
  user-select: none;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #E8E8E8;
}

.faq-question.active {
  background-color: var(--accent-green);
  color: var(--white);
}

.faq-toggle {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-question.active .faq-toggle {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 2rem;
  color: var(--text-light);
  line-height: 1.8;
}

.faq-answer.active {
  display: block;
}

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

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

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

.cookie-text a {
  color: var(--accent-blue);
  text-decoration: underline;
}

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

.cookie-btn {
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 0.9rem;
}

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

.cookie-btn-accept:hover {
  background-color: #45a049;
}

.cookie-btn-decline {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

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

.thank-you-container {
  text-align: center;
  padding: 4rem 2rem;
  background-color: var(--white);
  border-radius: 8px;
  margin: 4rem auto;
  max-width: 600px;
}

.thank-you-container h1 {
  color: var(--accent-green);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.thank-you-container p {
  font-size: 1.05rem;
  margin-bottom: 2rem;
  color: var(--text-light);
}

.thank-you-link {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: var(--accent-blue);
  color: var(--white);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.thank-you-link:hover {
  background-color: #1976D2;
}

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

.timeline-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
}

.timeline-marker {
  width: 30px;
  height: 30px;
  background-color: var(--accent-green);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.timeline-content h3 {
  color: var(--accent-blue);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .navbar {
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
  }

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

  .navbar-nav {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.3rem;
  }

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

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

  .hero-image,
  .two-column-image {
    height: 300px;
  }

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

  main {
    padding: 0 1rem;
  }

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

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

  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cookie-btn {
    width: 100%;
  }

  .contact-form {
    padding: 1.5rem;
    margin: 1rem;
  }

  .table-section {
    padding: 1.5rem;
  }

  table {
    font-size: 0.85rem;
  }

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

  .timeline-item {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .navbar-brand {
    font-size: 1.2rem;
  }

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

  h1 {
    font-size: 1.4rem;
  }

  h2 {
    font-size: 1.1rem;
  }

  h3 {
    font-size: 1.05rem;
  }

  .hero-section {
    padding: 1.5rem;
  }

  .hero-image {
    height: 250px;
  }

  .two-column-image {
    height: 250px;
  }

  .card {
    padding: 1.5rem;
  }

  main {
    padding: 0 0.5rem;
  }

  .disclaimer-box,
  .list-section,
  .table-section {
    padding: 1.5rem;
  }

  .cta-section {
    padding: 2rem 1rem;
  }

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

  .cookie-banner {
    padding: 1rem 0.5rem;
  }
}
