@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@400;500;600;700&family=Merriweather:wght@400;700&display=swap');

:root {
  --slate: #475569;
  --aqua: #88D4E2;
  --linen: #FCFBF7;
  --terracotta: #A66F5C;
  --white: #FFFFFF;
  --black: #000000;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Merriweather', serif;
  font-size: 1.2rem;
  line-height: 1.95;
  color: var(--slate);
  background-color: var(--white);
}

h1 {
  font-family: 'Figtree', sans-serif;
  font-size: 4.375rem;
  font-weight: 900;
  letter-spacing: -1.1px;
  color: var(--slate);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

h2 {
  font-family: 'Figtree', sans-serif;
  font-size: 2.75rem;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 1.5rem;
  margin-top: 2rem;
}

h3 {
  font-family: 'Figtree', sans-serif;
  font-size: 1.875rem;
  font-weight: 500;
  color: var(--slate);
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
  color: var(--slate);
}

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

a:hover {
  color: var(--terracotta);
}

.strong-aqua {
  font-family: 'Figtree', sans-serif;
  font-weight: 600;
  color: var(--aqua);
}

header {
  position: sticky;
  top: 0;
  background-color: var(--white);
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(71, 85, 105, 0.1);
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}

header.scrolled {
  box-shadow: 0 2px 8px rgba(71, 85, 105, 0.1);
  background-color: rgba(255, 251, 247, 0.95);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 8vw;
  max-width: 1560px;
  margin: 0 auto;
}

.logo {
  font-family: 'Figtree', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--slate);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

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

nav {
  display: flex;
  gap: 2rem;
}

nav a {
  font-family: 'Figtree', sans-serif;
  font-size: 1rem;
  color: var(--slate);
  position: relative;
  padding-bottom: 0.25rem;
  transition: all 0.3s ease;
}

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

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

main {
  padding: 0;
  max-width: 1560px;
  margin: 0 auto;
}

.hero {
  width: 100%;
  background: linear-gradient(135deg, var(--linen) 0%, var(--aqua) 100%);
  padding: 100px 8vw;
  position: relative;
  overflow: hidden;
}

.hero img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 2rem 0;
  border-radius: 8px;
}

.section {
  padding: 150px 8vw;
  max-width: 1560px;
  margin: 0 auto;
}

.section.alt-bg {
  background-color: var(--linen);
}

.section.aqua-bg {
  background: linear-gradient(180deg, var(--linen) 0%, var(--aqua) 100%);
}

.section-content {
  display: grid;
  grid-template-columns: 65% 35%;
  gap: 3rem;
  align-items: center;
}

.section-content.text-only {
  grid-template-columns: 1fr;
}

.section-content.image-left {
  grid-template-columns: 35% 65%;
}

.section-content img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

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

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

.card:hover {
  border-color: var(--aqua);
  box-shadow: 0 8px 24px rgba(136, 212, 226, 0.2);
  transform: scale(1.03);
}

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

.card p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.card-link {
  color: var(--aqua);
  font-family: 'Figtree', sans-serif;
  font-weight: 600;
  transition: color 0.3s ease;
}

.card-link:hover {
  color: var(--terracotta);
}

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

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

table th {
  background-color: var(--aqua);
  color: var(--slate);
  padding: 1rem;
  text-align: left;
  font-family: 'Figtree', sans-serif;
  font-weight: 600;
}

table td {
  padding: 1rem;
  border-bottom: 1px solid rgba(71, 85, 105, 0.1);
}

table tr:hover {
  background-color: rgba(136, 212, 226, 0.1);
}

.faq-item {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(71, 85, 105, 0.1);
}

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

.faq-item h3 {
  cursor: pointer;
  transition: color 0.3s ease;
  user-select: none;
}

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

.faq-answer {
  display: none;
  margin-top: 1rem;
  padding-left: 1rem;
  border-left: 3px solid var(--aqua);
}

.faq-answer.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

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

footer {
  background-color: var(--slate);
  color: var(--linen);
  padding: 3rem 8vw;
  margin-top: 150px;
  border-top: 1px solid rgba(255, 251, 247, 0.1);
}

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

.footer-section h4 {
  font-family: 'Figtree', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--aqua);
}

.footer-section p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--linen);
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: var(--aqua);
  font-size: 0.95rem;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 251, 247, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--linen);
  max-width: 1560px;
  margin: 0 auto;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(90deg, var(--linen) 0%, var(--aqua) 100%);
  color: var(--slate);
  padding: 1rem 2rem;
  border-radius: 4px;
  font-family: 'Figtree', sans-serif;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
  margin-top: 1rem;
}

.cta-button:hover {
  color: var(--slate);
  box-shadow: 0 6px 20px rgba(136, 212, 226, 0.3);
  transform: translateY(-2px);
}

.form-container {
  background-color: var(--linen);
  padding: 2rem;
  border-radius: 8px;
  max-width: 600px;
  margin: 2rem 0;
}

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

.form-group label {
  display: block;
  font-family: 'Figtree', sans-serif;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

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

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(166, 111, 92, 0.1);
}

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

.form-button {
  background: linear-gradient(90deg, var(--linen) 0%, var(--aqua) 100%);
  color: var(--slate);
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-family: 'Figtree', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  font-size: 1rem;
}

.form-button:hover {
  box-shadow: 0 6px 20px rgba(136, 212, 226, 0.3);
  transform: translateY(-2px);
}

.disclaimer {
  background-color: rgba(136, 212, 226, 0.1);
  border-left: 4px solid var(--aqua);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
  font-size: 0.95rem;
  line-height: 1.8;
}

.form-disclaimer {
  background-color: rgba(166, 111, 92, 0.1);
  border-left: 4px solid var(--terracotta);
  padding: 1rem;
  margin: 1.5rem 0;
  border-radius: 4px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--slate);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--slate);
  color: var(--linen);
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  z-index: 2000;
  box-shadow: 0 -2px 10px rgba(71, 85, 105, 0.2);
}

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

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

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

.cookie-button {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-family: 'Figtree', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.cookie-accept {
  background-color: var(--aqua);
  color: var(--slate);
}

.cookie-accept:hover {
  background-color: var(--terracotta);
  color: var(--linen);
}

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

.cookie-reject:hover {
  background-color: var(--linen);
  color: var(--slate);
}

.cookie-learn {
  background-color: transparent;
  color: var(--aqua);
  border: 1px solid var(--aqua);
  padding: 0.75rem 1.5rem;
}

.cookie-learn:hover {
  background-color: var(--aqua);
  color: var(--slate);
}

.thank-you-container {
  text-align: center;
  padding: 4rem 2rem;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.thank-you-container h1 {
  margin-bottom: 1rem;
}

.thank-you-container p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
}

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

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  body {
    font-size: 1rem;
    line-height: 1.8;
  }

  .section {
    padding: 60px 5vw;
  }

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

  .section-content.image-left {
    grid-template-columns: 1fr;
  }

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

  nav {
    gap: 1rem;
  }

  nav a {
    font-size: 0.9rem;
  }

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

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

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

  .cookie-button {
    flex: 1;
    min-width: 100px;
  }

  .hero {
    padding: 50px 5vw;
  }
}
