@import url('https://fonts.googleapis.com/css2?family=Lora:ital@0;1&family=Montserrat:wght@400;600;700&display=swap');

:root {
  --color-charcoal: #3C444C;
  --color-slate-blue: #8FA2B2;
  --color-parchment: #F8F4EA;
  --color-amber: #B5894A;
  --font-serif: 'Lora', serif;
  --font-sans: 'Montserrat', sans-serif;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-serif);
  background-color: var(--color-parchment);
  color: var(--color-charcoal);
  line-height: 1.95;
  font-size: 1rem;
  overflow-x: hidden;
}

h1 {
  font-family: var(--font-sans);
  font-size: 4.5rem;
  font-weight: 700;
  letter-spacing: -1.3px;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: var(--color-charcoal);
}

h2 {
  font-family: var(--font-sans);
  font-size: 2.875rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 3rem 0 1.5rem 0;
  color: var(--color-charcoal);
}

h3 {
  font-family: var(--font-sans);
  font-size: 1.875rem;
  font-weight: 600;
  margin: 2rem 0 1rem 0;
  color: var(--color-charcoal);
}

body {
  font-size: 1.2rem;
  line-height: 1.95;
}

p {
  margin-bottom: 1.5rem;
}

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

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

header {
  position: sticky;
  top: 0;
  background-color: var(--color-parchment);
  border-bottom: 1px solid var(--color-slate-blue);
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(60, 68, 76, 0.1);
  transition: all 0.3s ease;
}

header.scrolled {
  background-color: rgba(248, 244, 234, 0.95);
  box-shadow: 0 4px 12px rgba(60, 68, 76, 0.15);
}

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

.logo {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-charcoal);
  text-decoration: none;
}

.logo:hover {
  color: var(--color-slate-blue);
}

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

nav a {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  position: relative;
  transition: all 0.3s ease;
}

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

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

footer {
  background-color: var(--color-charcoal);
  color: var(--color-parchment);
  padding: 3rem 8vw;
  margin-top: 5rem;
  font-size: 0.9rem;
  line-height: 1.8;
}

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

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

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1620px;
  margin: 0 auto;
}

.footer-section h4 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-amber);
}

.footer-section p {
  margin-bottom: 0.5rem;
}

.footer-disclaimer {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(139, 145, 151, 0.3);
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
  font-style: italic;
  color: rgba(248, 244, 234, 0.8);
}

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

.section {
  padding: 160px 8vw;
  position: relative;
}

.section-hero {
  background: linear-gradient(135deg, var(--color-parchment) 0%, rgba(143, 162, 178, 0.05) 100%);
  padding: 220px 8vw;
  text-align: center;
}

.section-hero h1 {
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease;
}

.section-hero p {
  font-size: 1.5rem;
  color: var(--color-slate-blue);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-alt {
  background-color: rgba(143, 162, 178, 0.08);
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 2rem;
  align-items: center;
}

.section-text {
  grid-column: span 6;
}

.section-visual {
  grid-column: span 4;
}

.section-visual img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(60, 68, 76, 0.1);
}

.card {
  background-color: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(60, 68, 76, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(143, 162, 178, 0.1);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(143, 162, 178, 0.2);
  border-color: var(--color-slate-blue);
}

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

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--color-parchment) 0%, var(--color-slate-blue) 100%);
  color: var(--color-charcoal);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background-color: rgba(60, 68, 76, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
  width: 300px;
  height: 300px;
}

.cta-button:hover {
  background: linear-gradient(135deg, var(--color-slate-blue) 0%, var(--color-parchment) 100%);
  color: white;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background-color: white;
  box-shadow: 0 2px 8px rgba(60, 68, 76, 0.08);
}

table th {
  background-color: var(--color-slate-blue);
  color: white;
  padding: 1rem;
  text-align: left;
  font-weight: 700;
}

table td {
  padding: 1rem;
  border-bottom: 1px solid rgba(143, 162, 178, 0.2);
}

table tr:last-child td {
  border-bottom: none;
}

table tr:hover {
  background-color: rgba(143, 162, 178, 0.05);
}

.faq-item {
  background-color: white;
  border-left: 4px solid var(--color-amber);
  padding: 1.5rem;
  margin: 1rem 0;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(60, 68, 76, 0.05);
}

.faq-item strong {
  color: var(--color-slate-blue);
  font-size: 1.1rem;
}

.italic-highlight {
  font-style: italic;
  color: var(--color-slate-blue);
}

.disclaimer-box {
  background-color: rgba(181, 137, 74, 0.1);
  border-left: 4px solid var(--color-amber);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
  font-size: 0.95rem;
  line-height: 1.8;
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--color-slate-blue);
  border-radius: 4px;
  font-family: var(--font-serif);
  font-size: 1rem;
  line-height: 1.5;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-amber);
  box-shadow: 0 0 0 3px rgba(181, 137, 74, 0.1);
}

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

.form-submit {
  background: linear-gradient(135deg, var(--color-parchment) 0%, var(--color-slate-blue) 100%);
  color: var(--color-charcoal);
  padding: 0.75rem 2rem;
  font-family: var(--font-sans);
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-submit:hover {
  background: linear-gradient(135deg, var(--color-slate-blue) 0%, var(--color-parchment) 100%);
  color: white;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-charcoal);
  color: var(--color-parchment);
  padding: 2rem 2rem;
  box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.3);
  z-index: 999;
  max-width: 100%;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

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

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

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

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

.cookie-button {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

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

.cookie-accept:hover {
  background-color: rgba(181, 137, 74, 0.8);
}

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

.cookie-reject:hover {
  background-color: rgba(248, 244, 234, 0.1);
}

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

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

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

  h2 {
    font-size: 1.875rem;
  }

  h3 {
    font-size: 1.375rem;
  }

  .section {
    padding: 80px 4vw;
  }

  .section-hero {
    padding: 120px 4vw;
  }

  body {
    font-size: 1rem;
  }

  .header-container {
    padding: 1rem 4vw;
  }

  nav {
    gap: 1rem;
  }

  nav a {
    font-size: 0.85rem;
  }

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

  .section-text {
    grid-column: span 1;
  }

  .section-visual {
    grid-column: span 1;
  }

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

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

  .cookie-buttons {
    width: 100%;
    justify-content: flex-start;
  }

  footer {
    padding: 2rem 4vw;
  }
}
