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

:root {
  --deep-forest: #2E4F3E;
  --parchment: #F8F1E9;
  --steel-teal: #5C8A8C;
  --burnt-sienna: #A65C3A;
  --white: #FFFFFF;
  --dark-gray: #333333;
  --light-gray: #E8E8E8;
}

html, body {
  height: 100%;
  font-family: 'Roboto', 'Noto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--dark-gray);
  line-height: 1.72;
  font-size: 16px;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--white);
  border-bottom: 1px solid var(--light-gray);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

.logo {
  font-size: 24px;
  font-weight: bold;
  color: var(--deep-forest);
  text-decoration: none;
}

.logo img {
  height: 40px;
  width: auto;
  margin-right: 0.5rem;
  vertical-align: middle;
}

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

nav a {
  color: var(--dark-gray);
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--steel-teal);
}

@media (max-width: 768px) {
  nav {
    display: none;
  }
  
  .header-content {
    padding: 1rem 1.5rem;
  }
}

footer {
  background-color: var(--deep-forest);
  color: var(--parchment);
  padding: 3rem 2rem;
  margin-top: 4rem;
}

.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: 18px;
  margin-bottom: 1rem;
  color: var(--parchment);
}

.footer-section a {
  color: var(--parchment);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
  font-size: 14px;
}

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

.footer-section p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-divider {
  border-top: 1px solid rgba(248, 241, 233, 0.2);
  margin: 2rem 0;
  padding: 2rem 0 0 0;
  text-align: center;
  font-size: 13px;
  color: rgba(248, 241, 233, 0.7);
}

.container {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-mobile {
  padding: 0 1.5rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

h1, h2, h3 {
  font-family: 'Roboto Condensed', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--deep-forest);
}

h1 {
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 1rem;
}

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

h2 {
  font-size: 42px;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  h2 {
    font-size: 28px;
  }
}

h3 {
  font-size: 24px;
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  h3 {
    font-size: 20px;
  }
}

p {
  font-size: 18px;
  margin-bottom: 1.5rem;
  line-height: 1.72;
}

.hero {
  position: relative;
  min-height: 500px;
  background: linear-gradient(135deg, var(--deep-forest) 0%, var(--steel-teal) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(46, 79, 62, 0.8), rgba(92, 138, 140, 0.8));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1480px;
  width: 100%;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.hero h1 {
  color: var(--white);
  font-size: 72px;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 36px;
  }
  
  .hero {
    min-height: 350px;
  }
  
  .hero-content {
    padding: 2rem 1.5rem;
  }
}

.hero-subtitle {
  font-size: 20px;
  color: var(--parchment);
  max-width: 600px;
}

.section {
  padding: 4rem 2rem;
}

.section-accent-band {
  background-color: var(--deep-forest);
  color: var(--parchment);
}

.section-accent-band h2,
.section-accent-band h3 {
  color: var(--parchment);
}

.section-parchment-band {
  background-color: var(--parchment);
}

.card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.card:hover {
  border-color: var(--steel-teal);
  box-shadow: 0 0 0 3px rgba(92, 138, 140, 0.1);
  transform: translateY(-2px);
}

.myth-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 768px) {
  .myth-card {
    grid-template-columns: 1fr;
  }
  
  .myth-icon {
    text-align: center;
  }
}

.myth-icon {
  font-size: 48px;
  text-align: center;
  color: var(--burnt-sienna);
}

.myth-statement {
  font-size: 20px;
  font-weight: bold;
  font-style: italic;
  color: var(--deep-forest);
  margin-bottom: 1rem;
  border-left: 4px solid var(--burnt-sienna);
  padding-left: 1rem;
}

.myth-explanation {
  font-size: 16px;
  color: var(--dark-gray);
  line-height: 1.8;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background-color: var(--white);
}

.comparison-table thead {
  background-color: var(--deep-forest);
  color: var(--parchment);
}

.comparison-table th {
  padding: 1.5rem;
  text-align: left;
  font-weight: 700;
  font-size: 16px;
}

.comparison-table td {
  padding: 1.5rem;
  border-bottom: 1px solid var(--light-gray);
  font-size: 15px;
}

.comparison-table tbody tr:nth-child(even) {
  background-color: rgba(46, 79, 62, 0.05);
}

@media (max-width: 768px) {
  .comparison-table th,
  .comparison-table td {
    padding: 1rem;
    font-size: 14px;
  }
}

.image-section {
  margin: 3rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.image-section:nth-child(even) {
  grid-template-columns: 1fr 1fr;
}

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

.image-section.flipped img {
  order: -1;
}

@media (max-width: 768px) {
  .image-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .image-section.flipped img {
    order: 0;
  }
}

.image-section img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  max-height: 350px;
  object-fit: cover;
}

.accordion {
  background-color: var(--white);
}

.accordion-item {
  border: 1px solid var(--light-gray);
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
}

.accordion-header {
  background-color: var(--parchment);
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.accordion-header:hover {
  background-color: rgba(46, 79, 62, 0.1);
}

.accordion-header h4 {
  margin: 0;
  font-size: 18px;
  color: var(--deep-forest);
}

.accordion-toggle {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--deep-forest);
  font-size: 20px;
  transition: transform 0.3s ease;
}

.accordion-toggle.active {
  transform: rotate(180deg);
}

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

.accordion-content.active {
  max-height: 500px;
  padding: 1.5rem;
}

.accordion-content p {
  font-size: 16px;
  margin-bottom: 1rem;
}

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

.blog-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.blog-card:hover {
  border-color: var(--steel-teal);
  box-shadow: 0 4px 12px rgba(92, 138, 140, 0.15);
  transform: translateY(-4px);
}

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

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

.blog-card h3 {
  font-size: 20px;
  margin-bottom: 1rem;
  margin-top: 0;
}

.blog-card p {
  font-size: 15px;
  margin-bottom: 1rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--burnt-sienna);
  background-color: transparent;
  color: var(--burnt-sienna);
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
}

.btn:hover {
  background-color: var(--burnt-sienna);
  color: var(--white);
}

.btn-primary {
  border-color: var(--deep-forest);
  color: var(--deep-forest);
}

.btn-primary:hover {
  background-color: var(--deep-forest);
  color: var(--white);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--deep-forest);
  font-size: 16px;
}

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

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--steel-teal);
  box-shadow: 0 0 0 3px rgba(92, 138, 140, 0.1);
}

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

.disclaimer {
  background-color: var(--parchment);
  border-left: 4px solid var(--burnt-sienna);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.disclaimer p {
  margin-bottom: 0;
  font-size: 15px;
}

.contact-info {
  background-color: var(--parchment);
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.contact-info-item {
  margin-bottom: 1.5rem;
}

.contact-info-label {
  font-weight: 700;
  color: var(--deep-forest);
  font-size: 16px;
  margin-bottom: 0.5rem;
}

.contact-info-value {
  color: var(--dark-gray);
  font-size: 15px;
}

.contact-info-value a {
  color: var(--steel-teal);
  text-decoration: none;
}

.contact-info-value a:hover {
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--deep-forest);
  color: var(--parchment);
  padding: 1.5rem;
  display: none;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-banner.active {
  display: flex;
}

.cookie-text {
  font-size: 14px;
  flex: 1;
  min-width: 250px;
}

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

.cookie-btn {
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.cookie-btn-accept:hover {
  background-color: #8B4A2E;
}

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

.cookie-btn-reject:hover {
  background-color: rgba(248, 241, 233, 0.1);
}

.cookie-btn-learn {
  background-color: var(--steel-teal);
  color: var(--white);
}

.cookie-btn-learn:hover {
  background-color: #4A7073;
}

.thank-you-container {
  max-width: 600px;
  margin: 4rem auto;
  text-align: center;
  padding: 2rem;
}

.thank-you-icon {
  font-size: 64px;
  margin-bottom: 1rem;
}

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

.thank-you-container p {
  font-size: 18px;
  margin-bottom: 2rem;
}

.text-center {
  text-align: center;
}

.text-balance {
  text-wrap: balance;
}

.mt-4 {
  margin-top: 2rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.gap-2 {
  gap: 1rem;
}

.gap-3 {
  gap: 1.5rem;
}

.justify-content-center {
  justify-content: center;
}

.flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
