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

:root {
  --accent-color: #3B6A5A;
  --bg-light: #FFFFFF;
  --text-dark: #2C2C2C;
  --text-light: #5A5A5A;
  --border-light: #E8E8E8;
  --shadow-soft: 0 2px 8px rgba(0, 0, 0, 0.06);
}

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

html, body {
  height: 100%;
}

body {
  font-family: 'Source Sans Pro', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', serif;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 1.2rem;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.3rem;
  color: var(--accent-color);
}

h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

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

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

a:hover {
  color: #2d5246;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--bg-light);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-soft);
  z-index: 1000;
  padding: 1rem 0;
}

.navbar-brand {
  font-family: 'Merriweather', serif;
  font-size: 1.3rem;
  color: var(--accent-color) !important;
  font-weight: 700;
}

.nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  margin-left: 1.5rem;
  transition: color 0.3s ease;
}

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

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

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

section {
  padding: 3.5rem 0;
}

section.hero {
  background-color: var(--bg-light);
  padding: 4rem 0;
  position: relative;
}

.hero-bg {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

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

.section-content img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.section-text {
  flex: 1;
}

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

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

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

.footer-section {
  margin-bottom: 2rem;
}

.footer-section h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.footer-links a {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

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

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

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

.cta-link {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  background-color: var(--accent-color);
  color: white !important;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  margin: 1rem 0;
}

.cta-link:hover {
  background-color: #2d5246;
  color: white !important;
}

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

.faq-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

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

.blog-card {
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.3s ease;
}

.blog-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 1rem;
}

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

.form-control {
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 0.8rem;
  font-family: 'Source Sans Pro', sans-serif;
}

.form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem rgba(59, 106, 90, 0.25);
}

.btn-submit {
  background-color: var(--accent-color);
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn-submit:hover {
  background-color: #2d5246;
}

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

.disclaimer-box p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

#consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--bg-light);
  border-top: 1px solid var(--border-light);
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

#consent-banner.hidden {
  display: none;
}

.consent-text {
  flex: 1;
  font-size: 0.9rem;
  color: var(--text-light);
}

.consent-btn {
  background-color: var(--accent-color);
  color: white;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  white-space: nowrap;
}

.consent-btn:hover {
  background-color: #2d5246;
}

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

  h2 {
    font-size: 1.5rem;
  }

  .section-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .image-left,
  .image-right {
    grid-template-columns: 1fr;
  }

  .container-custom {
    padding: 0 1rem;
  }

  section {
    padding: 2rem 0;
  }

  #consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .consent-btn {
    width: 100%;
    text-align: center;
  }

  .footer-section {
    margin-bottom: 1.5rem;
  }

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