:root {
  --accent-color: #6B9E7A;
  --text-dark: #333333;
  --text-light: #666666;
  --bg-light: #F8F9F8;
  --border-color: #E0E0E0;
  --white: #FFFFFF;
}

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

html, body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

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

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

.logo {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

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

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

main {
  padding-top: 70px;
  margin-top: 0;
}

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

.hero-section {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 0;
}

.hero-section img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  background-color: rgba(0, 0, 0, 0.4);
  padding: 3rem;
  border-radius: 6px;
  max-width: 600px;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.hero-disclaimer {
  margin-top: 1rem;
  font-size: 0.9rem;
  font-style: italic;
  opacity: 0.95;
}

section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--border-color);
}

section:last-child {
  border-bottom: none;
}

h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
  line-height: 1.8;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
}

.card {
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 4px 12px rgba(107, 158, 122, 0.1);
}

.card-title {
  color: var(--accent-color);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.cta-button {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
}

.cta-button:hover {
  background-color: #5a8a6a;
}

footer {
  background-color: var(--bg-light);
  border-top: 1px solid var(--border-color);
  padding: 3rem 0 1rem;
  margin-top: auto;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

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

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

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

.footer-section ul li a {
  text-decoration: none;
  color: var(--text-light);
  transition: color 0.3s ease;
  font-size: 0.9rem;
}

.footer-section ul li a:hover {
  color: var(--accent-color);
}

.footer-contact {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
}

.footer-contact strong {
  display: block;
  color: var(--accent-color);
  margin-top: 0.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  font-size: 0.85rem;
  color: var(--text-light);
}

.faq-item {
  margin-bottom: 2rem;
  border-left: 4px solid var(--accent-color);
  padding-left: 1.5rem;
}

.faq-question {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  cursor: pointer;
}

.faq-answer {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.8;
}

.disclaimer-box {
  background-color: #F0F5F2;
  border: 1px solid var(--accent-color);
  border-radius: 6px;
  padding: 2rem;
  margin: 2rem 0;
  border-left: 4px solid var(--accent-color);
}

.disclaimer-box h4 {
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.disclaimer-box p {
  color: var(--text-light);
  font-size: 0.9rem;
}

.content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
}

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

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

.content-text {
  padding-right: 1rem;
}

.content-image {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

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

.blog-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 6px 16px rgba(107, 158, 122, 0.15);
}

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

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

.blog-card-title {
  color: var(--accent-color);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.blog-card-excerpt {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.blog-card .cta-button {
  display: block;
  text-align: center;
  text-decoration: none;
  font-size: 0.85rem;
}

form {
  max-width: 500px;
  margin: 0 auto;
}

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

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

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

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

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

.soft-cta {
  text-align: center;
  padding: 2rem;
  background-color: var(--bg-light);
  border-radius: 6px;
}

.soft-cta h2 {
  margin-bottom: 1rem;
}

.soft-cta p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .navbar {
    padding: 1rem;
  }

  .nav-links {
    gap: 1rem;
    font-size: 0.85rem;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  .hero-section {
    height: 350px;
  }

  .hero-content {
    padding: 2rem;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

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

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

  .content-text {
    padding-right: 0;
  }

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

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

  .section-title h2::after {
    width: 40px;
  }

  section {
    padding: 2rem 0;
  }

  main {
    padding-top: 60px;
  }
}

@media (max-width: 480px) {
  .navbar {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.2rem;
  }

  .container {
    padding: 0 1rem;
  }

  .hero-section {
    height: 300px;
    padding-top: 1rem;
  }

  .disclaimer-box {
    padding: 1rem;
  }
}

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  border-top: 1px solid var(--border-color);
  padding: 1.5rem;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
  z-index: 999;
  display: none;
}

#cookie-banner.show {
  display: block;
}

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

.cookie-text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

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

.cookie-buttons button {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  font-family: 'Open Sans', sans-serif;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

#cookie-accept {
  background-color: var(--accent-color);
  color: var(--white);
}

#cookie-accept:hover {
  background-color: #5a8a6a;
}

#cookie-decline {
  background-color: transparent;
  color: var(--text-dark);
  border: 1px solid var(--border-color);
}

#cookie-decline:hover {
  border-color: var(--text-dark);
}

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

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-buttons button {
    width: 100%;
  }
}

.article-content {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

.article-content h1 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.article-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.article-content p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

.article-image {
  width: 100%;
  max-width: 700px;
  margin: 2rem auto;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: block;
}

.links-section {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.link-card {
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.link-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 4px 12px rgba(107, 158, 122, 0.1);
}

.link-card h3 {
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.link-card p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.link-card .cta-button {
  display: inline-block;
}

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