:root {
  --color-slate-gray: #6B7280;
  --color-sage-green: #A7BEAE;
  --color-oatmeal: #F4E4BC;
  --color-charcoal: #374151;
  --color-white: #FFFFFF;
  --color-dark-gray: #1F2937;
  --font-serif: 'Georgia', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-serif);
  color: var(--color-dark-gray);
  background-color: var(--color-white);
  font-size: 1.125rem;
  line-height: 1.75;
}

h1 {
  font-family: var(--font-sans);
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--color-dark-gray);
  margin-bottom: 1.5rem;
  text-balance: pretty;
}

h2 {
  font-family: var(--font-sans);
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--color-dark-gray);
  margin-bottom: 1.5rem;
  margin-top: 2rem;
  text-balance: pretty;
}

h3 {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-dark-gray);
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
  text-balance: pretty;
}

strong {
  font-weight: 600;
  color: var(--color-charcoal);
}

em {
  font-style: italic;
  color: var(--color-slate-gray);
}

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

a:hover {
  color: var(--color-slate-gray);
  text-decoration: underline;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--color-white);
  z-index: 1000;
  border-bottom: 1px solid #E5E7EB;
  transition: box-shadow 0.3s ease;
}

header.scrolled {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  background-color: rgba(255, 255, 255, 0.98);
}

.navbar {
  padding: 1rem 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1480px;
  margin: 0 auto;
  width: 100%;
}

.logo {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-slate-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.logo:hover {
  color: var(--color-sage-green);
}

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

.nav-links a {
  font-family: var(--font-sans);
  color: var(--color-dark-gray);
  text-decoration: none;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.3s ease;
}

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

.nav-links a:hover {
  color: var(--color-sage-green);
}

.nav-links a:hover::after {
  opacity: 1;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.125rem;
  }
}

footer {
  background-color: var(--color-charcoal);
  color: var(--color-white);
  padding: 4rem 5vw 2rem;
  margin-top: 6rem;
  font-size: 0.95rem;
}

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

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

.footer-section h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-oatmeal);
  margin-bottom: 1rem;
  margin-top: 0;
}

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

.footer-section a {
  color: var(--color-sage-green);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-divider {
  border-top: 1px solid rgba(167, 190, 174, 0.3);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

.container {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 5vw;
}

section {
  padding: 4rem 5vw;
  max-width: 100%;
}

.hero-section {
  padding-top: 10rem;
  padding-bottom: 4rem;
  background: linear-gradient(135deg, rgba(107, 114, 128, 0.05) 0%, rgba(167, 190, 174, 0.05) 100%);
}

.hero-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 2rem 0;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  display: block;
}

.content-block {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 5vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.content-block.reverse {
  direction: rtl;
}

.content-block.reverse > * {
  direction: ltr;
}

.content-block img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .content-block {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .content-block.reverse {
    direction: ltr;
  }
}

.section-divider {
  height: 2px;
  background-color: var(--color-sage-green);
  margin: 4rem 5vw;
  opacity: 0.4;
}

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

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

th {
  background-color: var(--color-slate-gray);
  color: var(--color-white);
  padding: 1rem;
  text-align: left;
  font-family: var(--font-sans);
  font-weight: 600;
}

td {
  padding: 1rem;
  border-bottom: 1px solid #E5E7EB;
}

tr:hover {
  background-color: rgba(167, 190, 174, 0.1);
}

.card {
  background-color: var(--color-white);
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.card:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-sage-green) 0%, var(--color-slate-gray) 100%);
  color: var(--color-white);
  padding: 1rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-family: var(--font-sans);
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(107, 114, 128, 0.3);
  color: var(--color-white);
  text-decoration: none;
}

.faq-item {
  margin-bottom: 1rem;
}

.faq-question {
  background-color: rgba(167, 190, 174, 0.1);
  padding: 1.5rem;
  border-left: 4px solid var(--color-sage-green);
  cursor: pointer;
  font-family: var(--font-sans);
  font-weight: 600;
  transition: background-color 0.3s ease;
  user-select: none;
}

.faq-question:hover {
  background-color: rgba(167, 190, 174, 0.2);
}

.faq-answer {
  padding: 1.5rem;
  background-color: #FAFAFA;
  border-left: 4px solid var(--color-slate-gray);
  display: none;
}

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

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

.list-styled {
  list-style: none;
  margin: 2rem 0;
}

.list-styled li {
  padding: 1rem 0 1rem 2.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.list-styled li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--color-sage-green);
  font-size: 1.5rem;
  line-height: 1;
}

.timeline {
  position: relative;
  padding-left: 2rem;
  margin: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--color-sage-green);
}

.timeline-item {
  margin-bottom: 2rem;
  position: relative;
  padding-left: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--color-oatmeal);
  border: 3px solid var(--color-sage-green);
}

.timeline-item strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--color-slate-gray);
}

.disclaimer-box {
  background-color: rgba(167, 190, 174, 0.1);
  border-left: 4px solid var(--color-sage-green);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
  font-size: 0.95rem;
}

.disclaimer-box strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--color-charcoal);
}

form {
  max-width: 600px;
  margin: 2rem 0;
}

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

label {
  display: block;
  font-family: var(--font-sans);
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-dark-gray);
}

input[type="email"],
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #D1D5DB;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-sage-green);
  box-shadow: 0 0 0 3px rgba(167, 190, 174, 0.1);
}

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

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

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(107, 114, 128, 0.3);
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 768px) {
  .three-column {
    grid-template-columns: 1fr;
  }
}

.column-box {
  padding: 2rem;
  background-color: rgba(107, 114, 128, 0.05);
  border-radius: 8px;
  border-left: 4px solid var(--color-sage-green);
}

.column-box h3 {
  margin-top: 0;
  color: var(--color-slate-gray);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-charcoal);
  color: var(--color-white);
  padding: 1.5rem;
  z-index: 999;
  font-size: 0.9rem;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  font-family: var(--font-sans);
  display: none;
}

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

.cookie-content {
  flex: 1;
  line-height: 1.6;
}

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

.cookie-btn {
  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.9rem;
  white-space: nowrap;
}

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

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

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

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

.cookie-learn {
  background-color: transparent;
  color: var(--color-oatmeal);
  text-decoration: underline;
}

.cookie-learn:hover {
  color: var(--color-white);
}

@media (max-width: 768px) {
  .cookie-banner.show {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
    text-align: center;
  }
  
  body.cookie-active {
    padding-bottom: 300px;
  }
}

.breadcrumb {
  font-size: 0.9rem;
  margin-bottom: 2rem;
  color: var(--color-slate-gray);
}

.breadcrumb a {
  color: var(--color-sage-green);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.thank-you-container {
  text-align: center;
  padding: 4rem 5vw;
  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.25rem;
  margin-bottom: 2rem;
}

.blog-card {
  background-color: var(--color-white);
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.blog-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-card-title {
  font-family: var(--font-sans);
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-dark-gray);
}

.blog-card-link {
  color: var(--color-sage-green);
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  margin-top: 1rem;
}

.blog-card-link:hover {
  text-decoration: underline;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

@media (max-width: 768px) {
  section {
    padding: 2rem 5vw;
  }
  
  .container {
    padding: 0 5vw;
  }
  
  footer {
    padding: 2rem 5vw 1rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  h1 {
    font-size: 2rem;
    letter-spacing: 0;
  }
  
  h2 {
    font-size: 1.5rem;
  }
}
