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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  background-color: #fdf9f2;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1e3a2f 0%, #2d5a47 100%);
  color: #fdf9f2;
  padding: 1rem 0;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  display: none;
}

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

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

.site-header {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  padding: 0.5rem 0;
}

.navbar-brand {
  font-weight: 600;
  color: #1e3a2f;
  font-size: 1.5rem;
}

.brand-name {
  color: #1e3a2f;
}

.navbar-light .navbar-nav .nav-link {
  color: #2c3e50;
  margin-left: 1.5rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: #1e3a2f;
}

.hero-section {
  position: relative;
  margin-bottom: 3rem;
}

.hero-image-container {
  position: relative;
  width: 100%;
  height: 500px;
  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(135deg, rgba(30, 58, 47, 0.85) 0%, rgba(45, 90, 71, 0.75) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: #fdf9f2;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-content .lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.info-notice {
  background: linear-gradient(135deg, #1e3a2f 0%, #2d5a47 100%);
  padding: 1.5rem 0;
  margin-bottom: 3rem;
}

.notice-box {
  text-align: center;
  color: #fdf9f2;
}

.notice-box p {
  font-size: 1.1rem;
}

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

.content-section.bg-light {
  background-color: #fff;
}

.content-section h2 {
  color: #1e3a2f;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.content-section h3 {
  color: #2d5a47;
  font-weight: 600;
  margin-bottom: 1rem;
}

.content-section p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.content-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.info-card {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

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

.disclaimer-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.disclaimer-box {
  background: #fff;
  padding: 2.5rem;
  border-radius: 8px;
  border-left: 4px solid #1e3a2f;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.disclaimer-box h2,
.disclaimer-box h3 {
  color: #1e3a2f;
  margin-bottom: 1.5rem;
}

.cta-section {
  background: linear-gradient(135deg, #1e3a2f 0%, #2d5a47 100%);
  padding: 4rem 0;
  color: #fdf9f2;
}

.cta-section h2 {
  color: #fdf9f2;
  margin-bottom: 1rem;
}

.cta-section .lead {
  margin-bottom: 2rem;
}

.btn-primary {
  background: #fdf9f2;
  border: none;
  color: #1e3a2f;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #f5ede0;
  color: #1e3a2f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.site-footer {
  background: linear-gradient(135deg, #1e3a2f 0%, #2d5a47 100%);
  color: #fdf9f2;
  padding: 3rem 0 1rem;
  margin-top: 3rem;
}

.site-footer h4 {
  color: #fdf9f2;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.site-footer p {
  color: #d1e0d9;
  margin-bottom: 0.5rem;
}

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

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

.footer-links a {
  color: #d1e0d9;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fdf9f2;
}

.copyright {
  color: #b0c4ba;
  font-size: 0.9rem;
  margin-top: 2rem;
}

.page-header {
  background: linear-gradient(135deg, #1e3a2f 0%, #2d5a47 100%);
  padding: 4rem 0;
  color: #fdf9f2;
  margin-bottom: 3rem;
}

.page-header h1 {
  margin-bottom: 0.5rem;
}

.page-header .lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.contact-info-box,
.contact-form-box {
  background: #fff;
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.contact-form .form-control {
  border: 2px solid #e9ecef;
  border-radius: 6px;
  padding: 0.75rem;
  transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: #1e3a2f;
  box-shadow: 0 0 0 0.2rem rgba(30, 58, 47, 0.1);
}

.thank-you-box {
  background: #fff;
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-top: 3rem;
}

.about-image-container,
.disclaimer-image-container {
  margin: 2rem 0;
}

.alert-warning {
  background-color: #fff3cd;
  border: 1px solid #ffc107;
  color: #856404;
  padding: 1.5rem;
  border-radius: 6px;
}

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

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

  .hero-image-container {
    height: 350px;
  }

  .navbar-light .navbar-nav .nav-link {
    margin-left: 0;
    margin-bottom: 0.5rem;
  }

  .content-section {
    padding: 2rem 0;
  }

  .info-card {
    margin-bottom: 1.5rem;
  }

  .col-md-6.order-md-2,
  .col-md-6.order-md-1 {
    margin-bottom: 2rem;
  }
}
