:root {
  --accent-color: #3E8E7E;
  --light-bg: #F5FFFE;
  --light-accent: #E8F6F4;
  --olive-accent: #D4C9A8;
  --text-dark: #2C3E50;
  --text-light: #5A6C7D;
  --border-light: #D5E8E5;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background-color: #FFFFFF;
  line-height: 1.6;
  font-size: 16px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(62, 142, 126, 0.08);
}

.navbar-brand {
  font-size: 22px;
  font-weight: 600;
  color: var(--accent-color);
  text-decoration: none;
  letter-spacing: 0.5px;
}

.navbar-brand:hover {
  color: var(--accent-color);
}

.nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s ease;
  margin: 0 8px;
}

.nav-link:hover {
  color: var(--accent-color) !important;
}

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

.hero-section {
  position: relative;
  height: 600px;
  overflow: hidden;
  margin-top: -70px;
  padding-top: 70px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(62, 142, 126, 0.85), rgba(62, 142, 126, 0.75));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 30px;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

section {
  padding: 80px 0;
  position: relative;
}

section:nth-child(even) {
  background-color: var(--light-bg);
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 40px;
  text-align: center;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.content-block {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 60px;
}

.content-block:nth-child(even) {
  flex-direction: row-reverse;
}

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

.content-text h3 {
  font-size: 28px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.content-text p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 15px;
  line-height: 1.8;
}

.article-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.article-card {
  background: white;
  padding: 30px;
  border-radius: 8px;
  border-left: 4px solid var(--accent-color);
  box-shadow: 0 4px 12px rgba(62, 142, 126, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: var(--text-dark);
  display: block;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(62, 142, 126, 0.15);
  color: var(--text-dark);
}

.article-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--accent-color);
}

.article-card p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 16px;
}

.article-link-text {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
}

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

.faq-item {
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 24px;
}

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

.faq-question {
  font-size: 18px;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 12px;
}

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

.disclaimer-box {
  background: var(--light-accent);
  border-left: 4px solid var(--accent-color);
  padding: 24px;
  border-radius: 6px;
  margin: 40px 0;
  font-size: 14px;
  color: var(--text-dark);
  text-align: center;
  font-style: italic;
}

.cta-section {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, rgba(62, 142, 126, 0.08), rgba(212, 201, 168, 0.08));
  border-radius: 8px;
  margin: 40px 0;
}

.cta-section h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.cta-section p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: white;
  padding: 12px 32px;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  font-size: 15px;
}

.btn-primary:hover {
  background-color: #2d6b61;
  border-color: #2d6b61;
  color: white;
  text-decoration: none;
}

footer {
  background-color: var(--text-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 60px 0 20px;
  margin-top: 80px;
  font-size: 14px;
  line-height: 1.8;
}

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

.footer-section h5 {
  color: white;
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 15px;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 10px;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(62, 142, 126, 0.2);
  padding-top: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(44, 62, 80, 0.95);
  backdrop-filter: blur(10px);
  color: white;
  padding: 20px;
  z-index: 999;
  display: none;
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

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

.cookie-buttons {
  display: flex;
  gap: 12px;
  white-space: nowrap;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s ease;
}

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

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

.cookie-btn-decline {
  background-color: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-decline:hover {
  border-color: white;
}

h1, h2, h3 {
  color: var(--text-dark);
}

p {
  color: var(--text-light);
}

.wave-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-light), transparent);
  margin: 40px 0;
}

.image-container {
  text-align: center;
  margin: 30px 0;
}

.image-container img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(62, 142, 126, 0.12);
}

.blog-hero {
  background: linear-gradient(135deg, rgba(62, 142, 126, 0.1), rgba(212, 201, 168, 0.1));
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 40px;
}

.blog-hero h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.blog-hero p {
  font-size: 18px;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

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

.blog-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(62, 142, 126, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(62, 142, 126, 0.15);
}

.blog-card-content {
  padding: 30px;
}

.blog-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--accent-color);
}

.blog-card p {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 20px;
}

.blog-link {
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.blog-link:hover {
  color: #2d6b61;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  font-weight: 600;
  color: var(--text-dark);
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  font-family: inherit;
  font-size: 15px;
  color: var(--text-dark);
  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(62, 142, 126, 0.1);
}

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

.contact-info {
  background: var(--light-accent);
  padding: 30px;
  border-radius: 8px;
  margin-top: 40px;
}

.contact-info p {
  margin-bottom: 16px;
  font-size: 15px;
}

.contact-info strong {
  color: var(--text-dark);
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-content p {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 24px;
  text-align: justify;
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
}

.policy-content h2 {
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 20px;
}

.policy-content h3 {
  font-size: 20px;
  margin-top: 30px;
  margin-bottom: 15px;
}

.policy-content p {
  margin-bottom: 16px;
  line-height: 1.9;
}

.policy-content ul {
  margin-left: 20px;
  margin-bottom: 16px;
}

.policy-content li {
  margin-bottom: 10px;
  color: var(--text-light);
}

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

  .hero-content p {
    font-size: 16px;
  }

  .section-title {
    font-size: 28px;
  }

  .content-block {
    flex-direction: column !important;
    gap: 30px;
  }

  .content-block img {
    order: -1;
  }

  .content-text h3 {
    font-size: 22px;
  }

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

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

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

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

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

  .navbar-brand {
    font-size: 18px;
  }

  .nav-link {
    font-size: 14px;
    margin: 0 4px;
  }
}
