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

:root {
  --primary: #34495E;
  --accent-green: #2ECC71;
  --accent-yellow: #F1C40F;
  --accent-red: #E74C3C;
  --light-bg: #ecf0f1;
  --white: #ffffff;
  --text-dark: #2c3e50;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Georgia, Cambria, 'Times New Roman', serif;
  color: var(--text-dark);
  line-height: 1.8;
  background-color: var(--white);
}

h1, h2, h3 {
  font-family: system-ui, 'Segoe UI', Arial, sans-serif;
  font-weight: 700;
  color: var(--primary);
}

h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

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

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

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

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

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  font-family: system-ui, 'Segoe UI', Arial, sans-serif;
}

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

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--primary);
  font-family: system-ui, 'Segoe UI', Arial, sans-serif;
  font-size: 1rem;
  transition: color 0.3s;
}

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

main {
  margin-top: 80px;
  padding: 0;
}

.section {
  padding: 4rem 2rem;
  width: 100%;
}

.section-full-width {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero {
  background: linear-gradient(135deg, rgba(52, 73, 94, 0.8), rgba(46, 204, 113, 0.3)), url('images/hero.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
  padding: 8rem 2rem;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero h1 {
  color: var(--white);
  font-size: 4rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  color: var(--white);
  font-size: 1.5rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

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

.card {
  background: var(--white);
  border: 2px solid var(--light-bg);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.card:hover {
  border-color: var(--accent-green);
  box-shadow: 0 8px 24px rgba(46, 204, 113, 0.15);
  transform: translateY(-4px);
}

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

.card-content {
  padding: 1.5rem;
}

.card h3 {
  margin-top: 0;
  color: var(--primary);
}

.card p {
  margin-bottom: 0;
  font-size: 1rem;
}

.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 > div:first-child {
  order: 2;
}

.two-column.reverse > div:last-child {
  order: 1;
}

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

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: var(--accent-green);
  color: var(--white);
  text-decoration: none;
  border-radius: 4px;
  font-family: system-ui, 'Segoe UI', Arial, sans-serif;
  font-size: 1rem;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: var(--primary);
  box-shadow: 0 4px 12px rgba(52, 73, 94, 0.3);
}

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

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

.faq {
  max-width: 800px;
  margin: 3rem auto;
}

.faq-item {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--light-bg);
  padding-bottom: 1.5rem;
}

.faq-question {
  cursor: pointer;
  font-weight: 600;
  color: var(--primary);
  user-select: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--accent-green);
}

.faq-answer {
  display: none;
  margin-top: 1rem;
  padding-top: 1rem;
  color: var(--text-dark);
  line-height: 1.8;
}

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

.toggle-icon {
  font-size: 1.5rem;
  transition: transform 0.3s;
}

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

.cta-block {
  background: var(--light-bg);
  padding: 3rem;
  border-radius: 8px;
  text-align: center;
  margin: 3rem 0;
}

.cta-block h2 {
  margin-top: 0;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--primary);
  font-family: system-ui, 'Segoe UI', Arial, sans-serif;
}

.form-group input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--light-bg);
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-group input:focus {
  outline: none;
  border-color: var(--accent-green);
  box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.1);
}

.form-disclaimer {
  font-size: 0.85rem;
  color: #7f8c8d;
  margin-bottom: 1rem;
  font-style: italic;
  font-family: system-ui, 'Segoe UI', Arial, sans-serif;
}

.form-container {
  max-width: 500px;
  margin: 2rem auto;
}

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

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

.footer-section h3 {
  color: var(--white);
  margin-top: 0;
  font-size: 1.2rem;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

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

.footer-section a:hover {
  text-decoration: underline;
}

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

.footer-policies a {
  color: var(--accent-green);
  text-decoration: none;
  margin: 0 1rem;
}

.footer-policies a:hover {
  text-decoration: underline;
}

.disclaimer-banner {
  background: var(--accent-yellow);
  color: var(--primary);
  text-align: center;
  padding: 1rem;
  font-weight: 600;
  font-family: system-ui, 'Segoe UI', Arial, sans-serif;
}

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 8px;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}

.modal-close {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary);
  background: none;
  border: none;
}

.modal-close:hover {
  color: var(--accent-green);
}

.modal h2 {
  margin-top: 0;
}

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

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

.cookie-text {
  font-size: 0.95rem;
  max-width: 600px;
  font-family: system-ui, 'Segoe UI', Arial, sans-serif;
}

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

.cookie-btn {
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: system-ui, 'Segoe UI', Arial, sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s;
}

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

.cookie-btn-accept:hover {
  opacity: 0.9;
}

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

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

.cookie-btn-more {
  background: transparent;
  color: var(--accent-green);
  text-decoration: underline;
}

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

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

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

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .navbar {
    padding: 1rem;
  }

  .nav-links {
    gap: 1rem;
    font-size: 0.9rem;
  }

  .hero {
    padding: 4rem 1.5rem;
    min-height: 400px;
  }

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

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

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

  .two-column.reverse > div:first-child {
    order: unset;
  }

  .two-column.reverse > div:last-child {
    order: unset;
  }

  .two-column img {
    max-height: 300px;
  }

  .cookie-banner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .cookie-buttons {
    flex-wrap: wrap;
    justify-content: center;
  }

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

  .footer-policies {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .footer-policies a {
    margin: 0;
  }

  main {
    margin-top: 70px;
  }
}
