:root {
  --primary-bg: #F7FEFD;
  --accent-dark: #3D6E62;
  --accent-mid: #73AFA1;
  --accent-gold: #CFB934;
  --text-primary: #2C2C2C;
  --text-secondary: #5A5A5A;
  --border-light: #E8F4F2;
  --white: #FFFFFF;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--primary-bg);
  color: var(--text-primary);
  font-size: 17px;
  line-height: 1.78;
  font-weight: 400;
}

h1, h2, h3 {
  font-family: 'DM Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-primary);
}

h1 {
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-align: center;
}

h2 {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  text-align: center;
}

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

blockquote {
  font-style: italic;
  color: var(--accent-dark);
  border-left: 4px solid var(--accent-mid);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-size: 1.1rem;
}

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

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

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 15px;
}

.section {
  padding: 155px 0;
  width: 100%;
}

.section-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(247, 254, 253, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(61, 110, 98, 0.08);
  padding: 1.5rem 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 15px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo:hover {
  color: var(--accent-mid);
  text-decoration: none;
}

.logo img {
  height: 40px;
  width: auto;
}

nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav a {
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: all 0.65s ease;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--accent-gold);
  transition: width 0.65s ease;
}

nav a:hover::after {
  width: 100%;
}

.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(247, 254, 253, 0.35);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--text-primary);
  max-width: 800px;
  padding: 0 20px;
}

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

.hero p {
  font-size: 1.3rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.cta-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  margin-top: 2rem;
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent-mid) 100%);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.65s ease;
  text-decoration: none;
  display: inline-block;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(61, 110, 98, 0.25);
  color: var(--white);
  text-decoration: none;
}

.card {
  background: var(--white);
  border-radius: 4px;
  padding: 2rem;
  border: 1px solid var(--border-light);
  transition: all 0.65s ease;
  height: 100%;
}

.card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 16px 32px rgba(115, 175, 161, 0.15);
  border-color: var(--accent-mid);
}

.card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

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

.two-column img {
  width: 100%;
  border-radius: 4px;
}

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

.table-wrapper {
  overflow-x: auto;
  margin: 2rem 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--border-light);
}

th {
  background-color: var(--accent-dark);
  color: var(--white);
  padding: 1.5rem;
  text-align: left;
  font-weight: 600;
}

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

tr:hover {
  background-color: rgba(115, 175, 161, 0.05);
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--accent-dark);
  transition: all 0.65s ease;
}

.faq-question:hover {
  background-color: rgba(115, 175, 161, 0.05);
}

.faq-question.active {
  background-color: rgba(115, 175, 161, 0.1);
}

.faq-toggle {
  width: 24px;
  height: 24px;
  border: 2px solid var(--accent-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.65s ease;
}

.faq-toggle::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--accent-mid);
}

.faq-question.active .faq-toggle::after {
  content: '−';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.65s ease;
  padding: 0 1.5rem;
}

.faq-answer.show {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem 1.5rem;
}

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

.footer-content {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 15px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col h4 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 600;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.8);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: var(--accent-gold);
}

.footer-col p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

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

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  transition: all 0.65s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-mid);
  box-shadow: 0 0 0 3px rgba(115, 175, 161, 0.1);
}

.form-disclaimer {
  background: rgba(61, 110, 98, 0.05);
  border-left: 4px solid var(--accent-dark);
  padding: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  animation: fadeIn 0.3s ease;
}

.modal.show {
  display: block;
}

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

.modal-content {
  background-color: var(--white);
  margin: 5% auto;
  padding: 2rem;
  border-radius: 4px;
  width: 90%;
  max-width: 700px;
  max-height: 80vh;
  overflow-y: auto;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-close {
  color: var(--text-secondary);
  float: right;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.65s ease;
}

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

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

.cookie-banner.show {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

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

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

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

.cookie-accept {
  background: var(--accent-gold);
  color: var(--text-primary);
}

.cookie-accept:hover {
  background: #B8951F;
}

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

.cookie-reject:hover {
  background: rgba(255, 255, 255, 0.1);
}

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

.cookie-learn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.disclaimer-section {
  background: rgba(61, 110, 98, 0.05);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 2rem;
  margin: 2rem 0;
  color: var(--text-secondary);
  line-height: 1.8;
}

.disclaimer-section h3 {
  color: var(--accent-dark);
  margin-bottom: 1rem;
}

.disclaimer-section ul {
  margin-left: 1.5rem;
}

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

.thanks-message {
  background: rgba(115, 175, 161, 0.1);
  border: 1px solid var(--accent-mid);
  border-radius: 4px;
  padding: 2rem;
  text-align: center;
  color: var(--accent-dark);
  margin: 2rem 0;
  display: none;
}

.thanks-message.show {
  display: block;
  animation: slideIn 0.3s ease;
}

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

  h2 {
    font-size: 1.8rem;
  }

  .section {
    padding: 80px 0;
  }

  nav {
    gap: 1rem;
  }

  nav a {
    font-size: 0.85rem;
    padding: 0.25rem 0.75rem;
  }

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

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

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

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

  .cookie-buttons {
    justify-content: stretch;
  }

  .cookie-btn {
    flex: 1;
  }

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

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

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

  h2 {
    font-size: 1.4rem;
  }

  body {
    font-size: 16px;
  }

  .section {
    padding: 60px 0;
  }

  nav {
    gap: 0.5rem;
  }

  nav a {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
  }

  .modal-content {
    width: 95%;
    margin: 20% auto;
    padding: 1.5rem;
  }
}
