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

:root {
  --primary-dark: #20372c;
  --primary-light: #f9f8f4;
  --text-dark: #1a1a1a;
  --text-muted: #5a5a5a;
  --border-light: #e8e6e1;
}

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

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

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

h2 {
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}

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

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

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

.navbar-brand {
  color: var(--primary-dark) !important;
  font-size: 1.25rem;
  font-weight: 400;
}

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

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

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

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(32, 55, 44, 0.3), rgba(32, 55, 44, 0.6));
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.hero-content h1 {
  color: var(--primary-light);
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-content p {
  color: rgba(249, 248, 244, 0.9);
  font-size: 1.25rem;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background-color: #ffffff;
}

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

.content-block {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.content-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.content-image-large {
  height: 400px;
}

.info-card {
  background: linear-gradient(135deg, var(--primary-light) 0%, #ffffff 100%);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  border: 1px solid var(--border-light);
}

.info-card h3 {
  margin-bottom: 1rem;
}

.disclaimer-box {
  background-color: var(--primary-dark);
  color: var(--primary-light);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
}

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

.disclaimer-box p {
  color: rgba(249, 248, 244, 0.85);
  margin-bottom: 0;
}

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

.cta-section h2 {
  color: var(--primary-light);
  margin-bottom: 1.5rem;
}

.cta-section p {
  color: rgba(249, 248, 244, 0.85);
  margin-bottom: 2rem;
}

.btn-outline-light-custom {
  border: 1px solid var(--primary-light);
  color: var(--primary-light);
  padding: 0.75rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-outline-light-custom:hover {
  background-color: var(--primary-light);
  color: var(--primary-dark);
  text-decoration: none;
}

.btn-primary-custom {
  background-color: var(--primary-dark);
  border: none;
  color: var(--primary-light);
  padding: 0.75rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary-custom:hover {
  background-color: #2d4a3d;
  color: var(--primary-light);
  text-decoration: none;
}

footer {
  background-color: var(--primary-dark);
  color: var(--primary-light);
  padding: 4rem 0 2rem;
}

footer h3 {
  color: var(--primary-light);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

footer p {
  color: rgba(249, 248, 244, 0.7);
  font-size: 0.9rem;
}

footer a {
  color: rgba(249, 248, 244, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

footer a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  border-top: 1px solid rgba(249, 248, 244, 0.1);
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
}

.footer-disclaimer {
  background-color: rgba(249, 248, 244, 0.05);
  border-radius: 8px;
  padding: 1rem;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: rgba(249, 248, 244, 0.7);
}

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

.page-header h1 {
  color: var(--primary-light);
}

.page-header p {
  color: rgba(249, 248, 244, 0.85);
}

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

.contact-info {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 2.5rem;
  margin-bottom: 2rem;
}

.contact-form {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 2.5rem;
}

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

.form-control:focus {
  border-color: var(--primary-dark);
  box-shadow: 0 0 0 0.2rem rgba(32, 55, 44, 0.1);
}

.thank-you-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 0;
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  background-color: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.thank-you-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--primary-light);
}

.policy-content {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 3rem;
  margin-bottom: 2rem;
}

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

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

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

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

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

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

.cookie-banner p {
  color: rgba(249, 248, 244, 0.9);
  margin-bottom: 1rem;
}

.cookie-banner-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.cookie-btn-accept {
  background-color: var(--primary-light);
  color: var(--primary-dark);
}

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

.cookie-btn-decline {
  background-color: transparent;
  border: 1px solid var(--primary-light);
  color: var(--primary-light);
}

.cookie-btn-decline:hover {
  background-color: rgba(249, 248, 244, 0.1);
}

.two-column-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.two-column-images img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
}

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

  h2 {
    font-size: 1.5rem;
  }

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

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

  .section {
    padding: 3rem 0;
  }

  .content-block {
    padding: 1.5rem;
  }

  .two-column-images {
    grid-template-columns: 1fr;
  }

  .cookie-banner-buttons {
    flex-direction: column;
  }

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