@import url('https://fonts.googleapis.com/css2?family=Spectral:wght@400;700&family=Work+Sans:wght@400;500;600&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Work Sans', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fafaf8;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Spectral', serif;
  font-weight: 700;
  color: #2c3e2d;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  color: #4E7963;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.75rem;
  color: #4E7963;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: #444;
}

a {
  color: #4E7963;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #3a5a4d;
  text-decoration: underline;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  z-index: 1000;
  padding: 1rem 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Spectral', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #4E7963;
}

.logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

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

nav a {
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #4E7963;
}

main {
  margin-top: 80px;
  min-height: calc(100vh - 80px);
}

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

.hero {
  background: linear-gradient(135deg, #fafaf8 0%, #f5f3f0 100%);
  padding: 4rem 2rem;
  text-align: center;
}

.hero h1 {
  color: #4E7963;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.25rem;
  color: #666;
  margin-bottom: 2rem;
}

.hero-image {
  margin-top: 3rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hero-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
}

section {
  padding: 4rem 2rem;
}

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

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.two-column-image-left {
  grid-template-columns: 1fr 1fr;
}

.two-column-image-right {
  grid-template-columns: 1fr 1fr;
}

.column-image img,
.column-content img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  object-fit: cover;
}

.column-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.column-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-link {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background-color: #4E7963;
  color: #fff;
  border-radius: 4px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(78, 121, 99, 0.2);
}

.cta-link:hover {
  background-color: #3a5a4d;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(78, 121, 99, 0.3);
}

.faq-section {
  background-color: #f0ebe5;
  padding: 3rem 2rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.faq-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(78, 121, 99, 0.2);
}

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

.faq-question {
  font-weight: 600;
  color: #4E7963;
  cursor: pointer;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.faq-answer {
  color: #666;
  line-height: 1.8;
}

.disclaimer-box {
  background-color: #f0f8f3;
  border-left: 4px solid #4E7963;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.disclaimer-box p {
  margin-bottom: 0;
  color: #2c3e2d;
}

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

.link-card {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  text-align: center;
}

.link-card:hover {
  box-shadow: 0 8px 20px rgba(78, 121, 99, 0.1);
  transform: translateY(-2px);
}

.link-card h3 {
  margin-top: 0;
  color: #4E7963;
}

footer {
  background-color: #2c3e2d;
  color: #e8e6e1;
  padding: 3rem 2rem;
  margin-top: 4rem;
}

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

.footer-section h4 {
  color: #fff;
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-section ul {
  list-style: none;
}

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

.footer-section a {
  color: #b8b3ad;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #fff;
}

.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(232, 230, 225, 0.2);
  text-align: center;
  color: #999;
  font-size: 0.9rem;
}

form {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  max-width: 600px;
}

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

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #333;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: 'Work Sans', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: #4E7963;
  box-shadow: 0 0 0 3px rgba(78, 121, 99, 0.1);
}

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

button {
  background-color: #4E7963;
  color: #fff;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 4px;
  font-family: 'Work Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(78, 121, 99, 0.2);
}

button:hover {
  background-color: #3a5a4d;
  box-shadow: 0 6px 16px rgba(78, 121, 99, 0.3);
}

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

.blog-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.blog-card:hover {
  box-shadow: 0 8px 20px rgba(78, 121, 99, 0.1);
  transform: translateY(-2px);
}

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

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

.blog-card h3 {
  margin-top: 0;
  color: #4E7963;
  font-size: 1.3rem;
}

.blog-card p {
  color: #666;
  margin-bottom: 1rem;
}

.article-content {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 3rem;
  border-radius: 8px;
}

.article-image {
  margin: 2rem 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.article-image img {
  width: 100%;
  height: auto;
}

.breadcrumb {
  font-size: 0.9rem;
  color: #999;
  margin-bottom: 2rem;
}

.breadcrumb a {
  color: #4E7963;
}

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

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  .two-column {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  nav ul {
    gap: 1rem;
  }

  nav a {
    font-size: 0.9rem;
  }

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

  .hero {
    padding: 2rem 1rem;
  }

  section {
    padding: 2rem 1rem;
  }

  .article-content {
    padding: 1.5rem;
  }

  .container {
    padding: 0 1rem;
  }

  .header-content {
    padding: 0 1rem;
  }
}

.consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2c3e2d;
  color: #e8e6e1;
  padding: 1.5rem;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
  z-index: 999;
  border-top: 2px solid #4E7963;
}

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

.consent-text {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

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

.consent-button {
  padding: 0.5rem 1.25rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.consent-accept {
  background-color: #4E7963;
  color: #fff;
}

.consent-accept:hover {
  background-color: #3a5a4d;
}

.consent-reject {
  background-color: transparent;
  color: #e8e6e1;
  border: 1px solid #e8e6e1;
}

.consent-reject:hover {
  background-color: rgba(78, 121, 99, 0.1);
  border-color: #4E7963;
}

@media (max-width: 768px) {
  .consent-content {
    flex-direction: column;
    gap: 1rem;
  }

  .consent-buttons {
    width: 100%;
    justify-content: flex-end;
  }

  .consent-text {
    margin: 0;
    font-size: 0.85rem;
  }
}

body.consent-accepted {
  padding-bottom: 0;
}

.hidden {
  display: none;
}
