:root {
  --primary-green: #1e3a2e;
  --ivory: #fbfaf6;
  --light-gray: #f5f5f3;
  --text-dark: #2d2d2d;
  --text-muted: #6c757d;
  --border-light: #e8e8e5;
}

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

body {
  font-family: Georgia, "Times New Roman", serif;
  background-color: var(--ivory);
  color: var(--text-dark);
  line-height: 1.7;
  font-size: 16px;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--primary-green);
  font-weight: 600;
}

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

h2 {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
}

h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

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

a:hover {
  opacity: 0.7;
  text-decoration: none;
  color: var(--primary-green);
}

.navbar {
  background-color: var(--ivory);
  border-bottom: 1px solid var(--border-light);
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-green) !important;
}

.nav-link {
  color: var(--text-dark) !important;
  padding: 0.5rem 1rem !important;
  font-size: 0.95rem;
}

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

.hero-section {
  position: relative;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(30, 58, 46, 0.4), rgba(30, 58, 46, 0.6));
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: var(--ivory);
  padding: 2rem;
}

.hero-content h1 {
  color: var(--ivory);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.section {
  padding: 4rem 0;
}

.section-alt {
  background-color: var(--light-gray);
}

.content-block {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  border: 1px solid var(--border-light);
}

.content-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.disclaimer-block {
  background: linear-gradient(135deg, var(--light-gray) 0%, #eaeae7 100%);
  border-left: 4px solid var(--primary-green);
  padding: 1.5rem;
  border-radius: 0 10px 10px 0;
  margin: 2rem 0;
}

.disclaimer-block p {
  margin-bottom: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-green) 0%, #2a4f3f 100%);
  color: var(--ivory);
  padding: 3rem;
  border-radius: 12px;
  text-align: center;
}

.cta-section h2 {
  color: var(--ivory);
}

.btn-outline-light-custom {
  border: 2px solid var(--ivory);
  color: var(--ivory);
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: transparent;
}

.btn-outline-light-custom:hover {
  background-color: var(--ivory);
  color: var(--primary-green);
}

.footer {
  background-color: var(--primary-green);
  color: var(--ivory);
  padding: 3rem 0 1.5rem;
}

.footer h3 {
  color: var(--ivory);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.footer p,
.footer a {
  color: rgba(251, 250, 246, 0.85);
  font-size: 0.9rem;
}

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

.footer-links {
  list-style: none;
  padding: 0;
}

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

.footer-bottom {
  border-top: 1px solid rgba(251, 250, 246, 0.2);
  padding-top: 1.5rem;
  margin-top: 2rem;
}

.footer-disclaimer {
  font-size: 0.85rem;
  color: rgba(251, 250, 246, 0.7);
  text-align: center;
  margin-top: 1rem;
}

.page-header {
  background: linear-gradient(135deg, var(--light-gray) 0%, #eaeae7 100%);
  padding: 3rem 0;
  margin-bottom: 2rem;
}

.form-control {
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 0.75rem 1rem;
}

.form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(30, 58, 46, 0.15);
}

.btn-primary-custom {
  background-color: var(--primary-green);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  color: var(--ivory);
  transition: all 0.3s ease;
}

.btn-primary-custom:hover {
  background-color: #2a4f3f;
  color: var(--ivory);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-green);
  color: var(--ivory);
  padding: 1rem;
  z-index: 9999;
  display: none;
}

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

.cookie-banner p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.cookie-btn {
  background-color: var(--ivory);
  color: var(--primary-green);
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: opacity 0.3s ease;
}

.cookie-btn:hover {
  opacity: 0.9;
}

.info-message {
  background-color: var(--ivory);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 3rem;
  text-align: center;
}

.info-message h1 {
  color: var(--primary-green);
}

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

  h2 {
    font-size: 1.5rem;
  }

  .hero-section {
    height: 50vh;
    min-height: 350px;
  }

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

  .section {
    padding: 2.5rem 0;
  }

  .content-block {
    padding: 1.5rem;
  }

  .cta-section {
    padding: 2rem;
  }

  .footer {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 1.5rem;
  }

  .content-block {
    padding: 1.25rem;
  }
}
