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

:root {
  --primary-bg: #F5F5DC;
  --accent-blue: #A0C4FF;
  --accent-teal: #C9E4DE;
  --accent-peach: #FFD1A6;
  --text-dark: #2C2C2C;
  --text-light: #666666;
  --white: #FFFFFF;
  --border-light: #E8E8E0;
}

html, body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-dark);
  background-color: var(--primary-bg);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

h1 {
  font-size: 3rem;
  font-weight: 700;
}

h2 {
  font-size: 2.2rem;
  margin-top: 2rem;
}

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

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

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

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

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  border-bottom: 1px solid var(--border-light);
  z-index: 1030;
  padding: 1rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

header .navbar {
  padding: 0.5rem 0;
}

header .navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  transition: color 0.3s ease;
}

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

header .nav-link {
  color: var(--text-light);
  margin-left: 1.5rem;
  transition: color 0.3s ease;
  font-weight: 500;
}

header .nav-link:hover {
  color: var(--accent-blue);
}

body {
  padding-top: 80px;
}

section {
  padding: 4rem 0;
}

section.hero {
  background-color: var(--primary-bg);
  padding: 5rem 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

section.light {
  background-color: var(--white);
}

section.alt-light {
  background-color: #FAFAF5;
}

section.accent-blue-light {
  background-color: rgba(160, 196, 255, 0.15);
}

section.accent-teal-light {
  background-color: rgba(201, 228, 222, 0.15);
}

section.accent-peach-light {
  background-color: rgba(255, 209, 166, 0.15);
}

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

.hero-content h1 {
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--text-light);
}

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: var(--accent-blue);
  color: var(--white);
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn:hover {
  background-color: var(--accent-teal);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(169, 196, 255, 0.3);
  color: var(--white);
}

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

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

.row {
  display: flex;
  gap: 3rem;
  align-items: center;
  flex-wrap: wrap;
}

.row.reverse {
  flex-direction: row-reverse;
}

.col-content {
  flex: 1;
  min-width: 300px;
}

.col-image {
  flex: 1;
  min-width: 300px;
}

.col-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

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

.card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
  border-color: var(--accent-blue);
}

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

.card p {
  margin-bottom: 0;
}

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

ul, ol {
  margin: 1.5rem 0 1.5rem 1.5rem;
}

li {
  margin-bottom: 0.7rem;
  color: var(--text-light);
}

footer {
  background-color: var(--text-dark);
  color: var(--white);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

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

footer h4 {
  color: var(--accent-blue);
  margin-bottom: 1rem;
}

footer a {
  color: #B0B0B0;
}

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

footer p {
  color: #B0B0B0;
  font-size: 0.95rem;
}

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: #999;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  border-top: 2px solid var(--border-light);
  padding: 1.5rem;
  z-index: 1020;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
  display: none;
}

.cookie-banner.active {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-text {
  flex: 1;
  font-size: 0.95rem;
  color: var(--text-light);
}

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

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

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

.cookie-btn-accept:hover {
  background-color: var(--accent-teal);
}

.cookie-btn-decline {
  background-color: transparent;
  color: var(--text-dark);
  border: 2px solid var(--border-light);
}

.cookie-btn-decline:hover {
  border-color: var(--accent-blue);
  color: var(--accent-blue);
}

.cookie-btn-learn {
  background-color: transparent;
  color: var(--accent-blue);
  border: none;
  text-decoration: underline;
  padding: 0.6rem 0;
}

.cookie-btn-learn:hover {
  color: var(--accent-teal);
}

.disclaimer-box {
  background-color: rgba(160, 196, 255, 0.1);
  border-left: 4px solid var(--accent-blue);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.disclaimer-box h4 {
  color: var(--accent-blue);
  margin-top: 0;
}

.contact-form {
  max-width: 600px;
  margin: 2rem auto;
}

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

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

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

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

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

.form-disclaimer {
  background-color: rgba(201, 228, 222, 0.2);
  border-left: 4px solid var(--accent-teal);
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-radius: 4px;
  font-size: 0.95rem;
  color: var(--text-light);
}

.thank-you-box {
  background-color: rgba(201, 228, 222, 0.2);
  border: 2px solid var(--accent-teal);
  padding: 3rem;
  border-radius: 8px;
  text-align: center;
  max-width: 600px;
  margin: 2rem auto;
}

.thank-you-box h2 {
  color: var(--accent-teal);
  margin-top: 0;
}

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

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h3 {
  color: var(--accent-blue);
  margin-top: 0;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-item h3:hover {
  color: var(--accent-teal);
}

.faq-item p {
  margin-top: 1rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

table thead {
  background-color: rgba(160, 196, 255, 0.15);
}

table th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  border: 1px solid var(--border-light);
  color: var(--text-dark);
}

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

table tbody tr:hover {
  background-color: rgba(255, 209, 166, 0.1);
}

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

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

.text-balance {
  text-wrap: balance;
}

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

  h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .row {
    gap: 1.5rem;
  }

  .row.reverse {
    flex-direction: column;
  }

  header .nav-link {
    margin-left: 1rem;
    font-size: 0.9rem;
  }

  .cookie-banner.active {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .cookie-btn {
    flex: 1;
  }

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

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

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

  section {
    padding: 2.5rem 0;
  }

  section.hero {
    padding: 3rem 0;
    min-height: auto;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 1rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  .btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
  }

  .row {
    gap: 1rem;
  }

  .col-content, .col-image {
    flex: 1 100%;
  }

  header .navbar-brand {
    font-size: 1.2rem;
  }

  header .nav-link {
    margin-left: 0.75rem;
    font-size: 0.85rem;
  }

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

  .cookie-btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }

  footer {
    padding: 2rem 0 1rem;
  }
}
