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

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

.site-header {
  border-bottom: 1px solid #e0e0e0;
  background-color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
  font-size: 1.5rem;
  color: #3e5846;
}

.navbar-brand:hover {
  color: #3e5846;
}

.nav-link {
  color: #555;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #3e5846;
}

.hero-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f5f7f6 0%, #fff 100%);
}

.hero-section h1 {
  color: #2c3e36;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-section .lead {
  color: #555;
  font-size: 1.2rem;
}

.page-header {
  padding: 60px 0 40px;
  background: linear-gradient(135deg, #f5f7f6 0%, #fff 100%);
  border-bottom: 1px solid #e0e0e0;
}

.page-header h1 {
  color: #2c3e36;
  font-weight: 700;
}

.content-section {
  padding: 60px 0;
}

.content-section h2 {
  color: #2c3e36;
  font-weight: 600;
  margin-bottom: 20px;
}

.content-section h3 {
  color: #3e5846;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
}

.content-section p {
  color: #555;
  margin-bottom: 15px;
}

.content-section ul {
  color: #555;
}

.custom-list {
  list-style: none;
  padding-left: 0;
}

.custom-list li {
  padding-left: 25px;
  position: relative;
  margin-bottom: 10px;
}

.custom-list li:before {
  content: "•";
  color: #3e5846;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.bg-light {
  background-color: #f8f9fa !important;
}

.info-box {
  background-color: #f5f7f6;
  border-left: 4px solid #3e5846;
  border-radius: 4px;
}

.btn-custom {
  background-color: #3e5846;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-custom:hover {
  background-color: #2c3e36;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(62, 88, 70, 0.2);
}

.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #3e5846 0%, #2c3e36 100%);
  color: #fff;
}

.cta-section h2 {
  color: #fff;
}

.cta-section .lead {
  color: rgba(255, 255, 255, 0.9);
}

.site-footer {
  background-color: #2c3e36;
  color: #fff;
  padding: 50px 0 20px;
  margin-top: 80px;
}

.site-footer h5 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 20px;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: #fff;
}

.site-footer ul li {
  margin-bottom: 8px;
}

.site-footer hr {
  border-color: rgba(255, 255, 255, 0.2);
  margin: 30px 0;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2c3e36;
  color: #fff;
  padding: 15px 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;
}

.cookie-banner a {
  color: #fff;
  text-decoration: underline;
}

.contact-info h3 {
  color: #3e5846;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.form-control:focus {
  border-color: #3e5846;
  box-shadow: 0 0 0 0.2rem rgba(62, 88, 70, 0.15);
}

.table {
  margin-top: 20px;
}

.table thead {
  background-color: #f5f7f6;
}

.thank-you-content {
  padding: 40px 0;
}

img {
  max-width: 100%;
  height: auto;
}

.rounded {
  border-radius: 8px;
}

.shadow-sm {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .hero-section {
    padding: 40px 0;
  }

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

  .content-section {
    padding: 40px 0;
  }

  .cta-section {
    padding: 50px 0;
  }

  .site-footer {
    margin-top: 40px;
  }
}
