:root {
  --primary-green: #1f3c34;
  --ivory: #fbfaf6;
  --text-dark: #2c2c2c;
  --text-muted: #5a5a5a;
  --border-light: #e8e6e1;
  --shadow-soft: rgba(31, 60, 52, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

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.75rem;
  margin-bottom: 1.25rem;
}

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

p {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

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

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

.navbar {
  background: linear-gradient(135deg, var(--primary-green) 0%, #2a4f45 100%);
  padding: 1rem 0;
  box-shadow: 0 2px 10px var(--shadow-soft);
}

.navbar-brand {
  color: var(--ivory) !important;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.navbar-nav .nav-link {
  color: rgba(251, 250, 246, 0.9) !important;
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

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

.navbar-toggler {
  border-color: rgba(251, 250, 246, 0.3);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(251, 250, 246, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.hero-section {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(31, 60, 52, 0.7) 0%, rgba(31, 60, 52, 0.85) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 800px;
}

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

.hero-content p {
  color: rgba(251, 250, 246, 0.9);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
}

.section {
  padding: 4rem 0;
}

.section:nth-child(even) {
  background: linear-gradient(180deg, #f5f4ef 0%, var(--ivory) 100%);
}

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

.content-block {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px var(--shadow-soft);
  border: 1px solid var(--border-light);
}

.content-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  box-shadow: 0 3px 15px var(--shadow-soft);
}

.info-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 1.75rem;
  height: 100%;
  box-shadow: 0 3px 15px var(--shadow-soft);
  border-left: 4px solid var(--primary-green);
  transition: transform 0.2s ease;
}

.info-card:hover {
  transform: translateY(-3px);
}

.disclaimer-box {
  background: linear-gradient(135deg, #f8f7f2 0%, #f0efe9 100%);
  border-radius: 10px;
  padding: 2rem;
  border: 1px solid var(--border-light);
  margin: 2rem 0;
}

.disclaimer-box h3 {
  color: var(--primary-green);
  margin-bottom: 1rem;
}

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

.cta-section {
  background: linear-gradient(135deg, var(--primary-green) 0%, #2a4f45 100%);
  padding: 3rem 0;
  text-align: center;
}

.cta-section h2 {
  color: var(--ivory);
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(251, 250, 246, 0.9);
  margin-bottom: 1.5rem;
}

.btn-cta {
  background: var(--ivory);
  color: var(--primary-green);
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  transition: all 0.2s ease;
  display: inline-block;
}

.btn-cta:hover {
  background: #ffffff;
  color: var(--primary-green);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.footer {
  background: linear-gradient(135deg, var(--primary-green) 0%, #162b25 100%);
  color: rgba(251, 250, 246, 0.9);
  padding: 3rem 0 1.5rem;
}

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

.footer p {
  color: rgba(251, 250, 246, 0.8);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer a {
  color: rgba(251, 250, 246, 0.8);
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.2s ease;
}

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

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

.footer-disclaimer {
  background: rgba(251, 250, 246, 0.1);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  color: rgba(251, 250, 246, 0.9);
}

.page-header {
  background: linear-gradient(135deg, var(--primary-green) 0%, #2a4f45 100%);
  padding: 4rem 0;
  text-align: center;
}

.page-header h1 {
  color: var(--ivory);
  margin-bottom: 0.5rem;
}

.page-header p {
  color: rgba(251, 250, 246, 0.85);
  max-width: 600px;
  margin: 0 auto;
}

.page-content {
  padding: 3rem 0;
}

.contact-info {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px var(--shadow-soft);
}

.contact-form {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px var(--shadow-soft);
}

.form-control {
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(31, 60, 52, 0.1);
  outline: none;
}

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

.btn-submit:hover {
  background: #2a4f45;
  transform: translateY(-2px);
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-green) 0%, #2a4f45 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--ivory);
  font-size: 2rem;
}

.policy-content {
  background: #ffffff;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px var(--shadow-soft);
}

.policy-content h2 {
  margin-top: 2rem;
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.policy-content li {
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  z-index: 9999;
  display: none;
}

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

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

.cookie-banner .btn {
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

.btn-accept {
  background: var(--primary-green);
  color: var(--ivory);
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  font-size: 0.9rem;
}

.btn-accept:hover {
  background: #2a4f45;
  color: var(--ivory);
}

.btn-decline {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border-light);
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  font-size: 0.9rem;
}

.btn-decline:hover {
  background: #f5f4ef;
  color: var(--text-dark);
}

.dual-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.dual-image-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

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

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .hero-section {
    min-height: 60vh;
  }

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

  .hero-content p {
    font-size: 1rem;
  }

  .section {
    padding: 2.5rem 0;
  }

  .content-block {
    padding: 1.5rem;
  }

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

  .dual-image-grid img {
    height: 180px;
  }

  .footer {
    text-align: center;
  }

  .policy-content {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .hero-content {
    padding: 1rem;
  }

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

  .content-block {
    padding: 1.25rem;
  }

  .cookie-banner {
    padding: 1rem;
  }
}
