:root {
  --primary: #4A919E;
  --parchment: #F9F5EC;
  --amber: #E8B923;
  --charcoal: #2E2E2E;
  --light-gray: #f5f5f5;
  --border-color: #d9d9d9;
}

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

html, body {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  line-height: 1.68;
  color: var(--charcoal);
  background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia Pro', serif;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.4;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

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

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

body {
  padding-top: 70px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  border-bottom: 1px solid var(--border-color);
  z-index: 1030;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 100px 0 100px;
  height: 70px;
}

.logo {
  font-family: 'Georgia Pro', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

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

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

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

.container {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 100px 0 80px;
}

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

  .navbar {
    padding: 0 20px;
  }

  .nav-links {
    gap: 1rem;
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }
}

section {
  margin: 150px 0;
  padding: 3rem 0;
}

.hero {
  margin-top: 0;
  margin-bottom: 150px;
  background: linear-gradient(rgba(46, 46, 46, 0.3), rgba(46, 46, 46, 0.3));
  background-size: cover;
  background-position: center;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  color: white;
}

.hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.6);
}

.hero-content {
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero h1 {
  color: white;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
  color: rgba(255,255,255,0.95);
  font-size: 1.2rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

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

.card:hover {
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  border-color: var(--primary);
}

.card img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 6px;
  margin-bottom: 1.5rem;
  display: block;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

@media (min-width: 1024px) {
  .article-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.article-card {
  background-color: var(--parchment);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  border-color: var(--primary);
}

.article-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.article-card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.article-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.article-card p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.btn {
  display: inline-block;
  background-color: var(--primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(74, 145, 158, 0.2);
}

.btn:hover {
  background: linear-gradient(135deg, var(--primary), #5da5ae);
  box-shadow: 0 6px 12px rgba(74, 145, 158, 0.3);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--amber);
  color: var(--charcoal);
  box-shadow: 0 4px 8px rgba(232, 185, 35, 0.2);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--amber), #f0c43e);
  box-shadow: 0 6px 12px rgba(232, 185, 35, 0.3);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

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

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

.accordion-header:hover {
  background-color: #f0ebe3;
}

.accordion-toggle {
  font-size: 1.5rem;
  color: var(--amber);
  transition: transform 0.3s ease;
}

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

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: white;
}

.accordion-item.active .accordion-body {
  max-height: 1000px;
}

.accordion-content {
  padding: 1.25rem;
  color: #555;
  line-height: 1.68;
}

footer {
  background-color: var(--charcoal);
  color: white;
  padding: 3rem 0;
  margin-top: 150px;
  border-top: 1px solid var(--border-color);
}

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

@media (max-width: 768px) {
  .footer-content {
    padding: 0 20px;
    grid-template-columns: 1fr;
  }
}

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

.footer-section p,
.footer-section a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-section a {
  display: block;
  margin-bottom: 0.5rem;
  text-decoration: none;
}

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

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  display: inline-block;
  margin-bottom: 0;
}

.footer-bottom {
  max-width: 1520px;
  margin: 0 auto;
  padding: 2rem 100px 0 80px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .footer-bottom {
    padding: 2rem 20px 0 20px;
  }
}

.disclaimer {
  background-color: var(--parchment);
  border-left: 4px solid var(--amber);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
  font-size: 0.95rem;
  color: #555;
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

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

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

.form-container {
  max-width: 600px;
  margin: 0 auto;
}

.image-section {
  margin: 2rem 0;
}

.image-section img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1rem;
  display: block;
}

@media (max-width: 768px) {
  .image-section img {
    max-width: 100%;
  }
}

.content-section {
  margin-bottom: 3rem;
}

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

.stat-item {
  background-color: var(--parchment);
  padding: 1.5rem;
  border-radius: 6px;
  text-align: center;
  border: 1px solid var(--border-color);
}

.stat-number {
  font-family: 'Georgia Pro', serif;
  font-size: 2rem;
  color: var(--amber);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #666;
  font-size: 0.9rem;
}

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

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

.cookie-message {
  flex: 1;
  min-width: 200px;
}

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

.cookie-btn {
  padding: 0.6rem 1.2rem;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

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

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

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

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

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

.cookie-btn-policy:hover {
  background-color: rgba(232, 185, 35, 0.1);
}

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

.thank-you-container h1 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.thank-you-container p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.thank-you-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: var(--amber);
}

.section-intro {
  font-size: 1.05rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.full-width-image {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  max-height: 300px;
  overflow: hidden;
  margin: 3rem 0;
}

.full-width-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

  h2 {
    font-size: 1.2rem;
  }

  .hero {
    height: 300px;
  }

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

  .stats-block {
    grid-template-columns: repeat(2, 1fr);
  }

  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
  }

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

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