@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Source+Serif+Pro:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --color-slate: #5F6B7A;
  --color-celadon: #C2D8C2;
  --color-biscuit: #EDE4D9;
  --color-navy: #2C3E50;
  --color-white: #FFFFFF;
  --color-black: #000000;
}

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

html {
  font-family: 'Source Serif Pro', serif;
  font-size: 16px;
  color: var(--color-slate);
  background-color: var(--color-white);
}

body {
  line-height: 1.9;
  background-color: var(--color-white);
}

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

h2 {
  font-family: 'Manrope', sans-serif;
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-slate);
  margin-bottom: 1.5rem;
}

h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-slate);
  margin-bottom: 1rem;
}

p {
  font-size: 1.15rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
  color: var(--color-slate);
}

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

a:hover {
  color: var(--color-celadon);
  border-bottom: 2px solid var(--color-celadon);
}

.key-term {
  font-weight: 600;
  font-family: 'Manrope', sans-serif;
  color: var(--color-celadon);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-celadon);
  z-index: 1000;
  padding: 1rem 6vw;
}

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

.logo {
  font-family: 'Manrope', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-navy);
  text-decoration: none;
}

.logo:hover {
  color: var(--color-celadon);
  border-bottom: none;
}

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

nav a {
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-slate);
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

nav a:hover {
  color: var(--color-navy);
  border-bottom: 2px solid var(--color-celadon);
}

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

.hero-block {
  width: 100%;
  height: 600px;
  background: linear-gradient(135deg, var(--color-biscuit) 0%, var(--color-celadon) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 120px;
}

.hero-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section {
  padding: 0 6vw;
  margin-bottom: 120px;
}

section.full-bleed {
  padding: 0;
  margin-bottom: 160px;
}

section.full-bleed img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
}

.section-content {
  max-width: 1100px;
  margin: 0 auto;
}

.section-content.wide {
  max-width: 1480px;
}

.thinline {
  width: 100px;
  height: 2px;
  background-color: var(--color-celadon);
  margin-bottom: 2rem;
}

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

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

.card:hover {
  border-color: var(--color-navy);
  transform: scale(1.02);
  box-shadow: 0 8px 16px rgba(44, 62, 80, 0.1);
}

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

.card p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-slate);
}

.content-with-image {
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 2rem;
}

.content-with-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

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

.image-gallery img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

button {
  font-family: 'Manrope', sans-serif;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--color-navy);
  background-color: transparent;
  color: var(--color-navy);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 4px;
}

button:hover {
  background-color: var(--color-navy);
  color: var(--color-white);
  box-shadow: 0 4px 12px rgba(44, 62, 80, 0.2);
}

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

label {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-slate);
}

input,
textarea {
  width: 100%;
  max-width: 500px;
  padding: 0.75rem;
  border: 1px solid var(--color-slate);
  border-radius: 4px;
  font-family: 'Source Serif Pro', serif;
  font-size: 1rem;
  color: var(--color-slate);
  background-color: var(--color-white);
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-celadon);
  box-shadow: 0 0 0 3px rgba(194, 216, 194, 0.2);
}

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

.disclaimer {
  padding: 1.5rem;
  background-color: var(--color-biscuit);
  border-left: 4px solid var(--color-celadon);
  border-radius: 4px;
  margin-bottom: 2rem;
  margin-top: 2rem;
}

.disclaimer p {
  font-size: 0.95rem;
  color: var(--color-slate);
  margin-bottom: 0;
}

footer {
  background-color: var(--color-slate);
  color: var(--color-white);
  padding: 4rem 6vw;
  margin-top: 160px;
  border-top: 1px solid var(--color-celadon);
}

.footer-content {
  max-width: 1480px;
  margin: 0 auto;
}

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

.footer-section h3 {
  color: var(--color-celadon);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.footer-section a {
  display: inline-block;
  color: var(--color-celadon);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.footer-section a:hover {
  border-bottom: 1px solid var(--color-celadon);
}

.footer-bottom {
  border-top: 1px solid rgba(194, 216, 194, 0.3);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
}

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

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

.faq-question {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--color-navy);
  cursor: pointer;
  margin-bottom: 1rem;
  user-select: none;
}

.faq-answer {
  display: none;
  padding-left: 1rem;
  color: var(--color-slate);
}

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

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

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

.cookie-message a {
  color: var(--color-celadon);
  text-decoration: underline;
}

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

.cookie-actions button {
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-actions .btn-accept {
  background-color: var(--color-celadon);
  color: var(--color-slate);
}

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

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

.cookie-actions .btn-reject:hover {
  background-color: var(--color-celadon);
  color: var(--color-slate);
}

.fade-in {
  animation: fadeIn 0.6s ease-in forwards;
  opacity: 0;
}

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

.fade-in-1 { animation-delay: 0.1s; }
.fade-in-2 { animation-delay: 0.2s; }
.fade-in-3 { animation-delay: 0.3s; }
.fade-in-4 { animation-delay: 0.4s; }
.fade-in-5 { animation-delay: 0.5s; }

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

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  p {
    font-size: 1rem;
  }

  nav {
    gap: 1rem;
    font-size: 0.85rem;
  }

  .hero-block {
    height: 350px;
    margin-bottom: 80px;
  }

  section {
    margin-bottom: 80px;
    padding: 0 4vw;
  }

  .content-with-image {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .cookie-actions {
    width: 100%;
    flex-direction: column;
  }

  .cookie-actions button {
    width: 100%;
  }
}

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

  h2 {
    font-size: 1.375rem;
  }

  h3 {
    font-size: 1.125rem;
  }

  p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  header {
    padding: 0.75rem 3vw;
  }

  nav {
    gap: 0.75rem;
  }

  .logo {
    font-size: 1.25rem;
  }

  main {
    margin-top: 70px;
  }

  input,
  textarea {
    max-width: 100%;
  }
}
