:root {
  --color-pristine: #F9FBFD;
  --color-mint: #A8DADC;
  --color-linen: #F0F4F3;
  --color-charcoal: #3C444A;
  --color-white: #FFFFFF;
  --color-black: #000000;
  --color-light-gray: #E8ECED;
  --radius: 2px;
}

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

html, body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--color-pristine);
  color: var(--color-charcoal);
  line-height: 1.9;
  font-weight: 300;
  letter-spacing: -0.01em;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 2rem;
}

h2 {
  font-size: 2.8rem;
  margin-bottom: 1.8rem;
  margin-top: 3rem;
}

h3 {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  font-weight: 600;
}

h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.subtitle {
  font-size: 1.2rem;
  font-weight: 500;
  font-style: italic;
  color: var(--color-charcoal);
  margin-bottom: 1.5rem;
}

p {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  line-height: 1.9;
}

a {
  color: var(--color-mint);
  text-decoration: none;
  border-bottom: 1px solid var(--color-mint);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--color-charcoal);
  border-bottom-color: var(--color-charcoal);
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main-content {
  flex: 1;
  padding-top: 80px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-light-gray);
  z-index: 1000;
  display: flex;
  align-items: center;
  height: 80px;
  padding: 0 8vw;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
}

.logo {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--color-charcoal);
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

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

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

.nav a {
  font-size: 0.95rem;
  color: var(--color-charcoal);
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.nav a:hover,
.nav a.active {
  border-bottom-color: var(--color-mint);
  color: var(--color-mint);
}

.footer {
  background-color: var(--color-linen);
  padding: 4rem 8vw;
  margin-top: 6rem;
  border-top: 1px solid var(--color-light-gray);
}

.footer-container {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.footer-section h4 {
  font-size: 1rem;
  margin-bottom: 1.2rem;
  color: var(--color-charcoal);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  font-size: 0.95rem;
  color: var(--color-charcoal);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  border-bottom-color: var(--color-mint);
  color: var(--color-mint);
}

.footer-contact {
  font-size: 0.95rem;
  line-height: 1.8;
}

.footer-hours {
  font-size: 0.9rem;
  color: #666;
  margin-top: 1rem;
}

.footer-disclaimer {
  grid-column: 1 / -1;
  border-top: 1px solid var(--color-light-gray);
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
  font-size: 0.95rem;
  color: var(--color-charcoal);
  font-style: italic;
}

.container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 8vw;
}

.section {
  padding: 6rem 8vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}

.section-full {
  width: 100%;
  padding: 6rem 8vw;
}

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

.section-content {
  max-width: 1500px;
  margin: 0 auto;
  width: 100%;
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--color-pristine) 0%, var(--color-linen) 100%);
  overflow: hidden;
  margin-top: -80px;
  padding-top: 80px;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(168, 218, 220, 0.4) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 2rem;
  animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
  font-size: 4rem;
  color: var(--color-charcoal);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.5);
}

.hero-content .subtitle {
  font-size: 1.4rem;
  color: var(--color-charcoal);
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.5);
}

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

.card {
  background: var(--color-white);
  border: 1px solid var(--color-light-gray);
  padding: 2rem;
  transition: all 0.4s ease;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card:hover {
  box-shadow: 0 12px 24px rgba(60, 68, 74, 0.1);
  transform: translateY(-6px);
  border-color: var(--color-mint);
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 0.5rem;
}

.card h3 {
  color: var(--color-charcoal);
  margin-top: 1rem;
}

.card p {
  font-size: 0.95rem;
  color: #555;
}

.text-image-row {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin: 4rem 0;
}

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

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

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

.image-content img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  display: block;
}

.full-width-image {
  width: 100%;
  margin: 3rem 0;
  border-radius: var(--radius);
}

.full-width-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

.table-container {
  overflow-x: auto;
  margin: 3rem 0;
}

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

th {
  background-color: var(--color-linen);
  color: var(--color-charcoal);
  padding: 1.2rem;
  text-align: left;
  font-weight: 600;
  border-bottom: 2px solid var(--color-mint);
}

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

tr:hover {
  background-color: rgba(168, 218, 220, 0.1);
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--color-mint) 0%, #7FC8CB 100%);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  border-bottom: none;
}

.btn:hover {
  background: linear-gradient(135deg, #7FC8CB 0%, var(--color-mint) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(168, 218, 220, 0.3);
  color: var(--color-white);
  border-bottom: none;
}

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

.btn-secondary:hover {
  background: #2C3438;
  color: var(--color-white);
}

.center-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cta-section {
  background-color: var(--color-linen);
  padding: 6rem 8vw;
  text-align: center;
  margin-top: 4rem;
}

.cta-section h2 {
  margin-bottom: 1.5rem;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-light-gray);
  margin-bottom: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--color-mint);
  box-shadow: 0 6px 12px rgba(60, 68, 74, 0.08);
}

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

.faq-question:hover {
  background: rgba(168, 218, 220, 0.2);
}

.faq-toggle {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--color-mint);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.5rem;
  background: var(--color-white);
}

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

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

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

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

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-mint);
  box-shadow: 0 0 0 3px rgba(168, 218, 220, 0.2);
}

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

.form-disclaimer {
  background-color: var(--color-linen);
  padding: 1.2rem;
  border-left: 4px solid var(--color-mint);
  margin: 1.5rem 0;
  border-radius: var(--radius);
  font-size: 0.95rem;
  line-height: 1.6;
}

.disclaimer-section {
  background-color: var(--color-linen);
  padding: 2rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--color-mint);
  margin: 2rem 0;
}

.disclaimer-section h3 {
  color: var(--color-charcoal);
  margin-top: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeInUp 0.6s ease-out;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-charcoal);
  color: var(--color-white);
  padding: 1.5rem 2rem;
  z-index: 999;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
}

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

.cookie-content {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

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

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

.cookie-btn {
  padding: 0.7rem 1.2rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

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

.cookie-btn-accept:hover {
  background: #7FC8CB;
}

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

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

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

.cookie-btn-learn:hover {
  background: rgba(168, 218, 220, 0.1);
}

@media (max-width: 768px) {
  .header {
    padding: 0 6vw;
    height: 70px;
  }

  .main-content {
    padding-top: 70px;
  }

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

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.4rem;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content .subtitle {
    font-size: 1.1rem;
  }

  .section {
    flex-direction: column;
    padding: 4rem 6vw;
    gap: 2rem;
  }

  .text-image-row,
  .text-image-row.reverse {
    flex-direction: column;
    gap: 2rem;
  }

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

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

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

  .cookie-buttons {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    height: 60vh;
    padding-top: 70px;
    margin-top: -70px;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 0 4vw;
  }

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

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  p {
    font-size: 1rem;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .section,
  .section-full {
    padding: 2rem 4vw;
  }

  .footer {
    padding: 2rem 4vw;
  }

  .cookie-btn {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
  }
}
