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

html {
  scroll-behavior: smooth;
}

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

a {
  color: #2e7d32;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #1b5e20;
  text-decoration: none;
}

h1,
h2,
h3 {
  color: #1a1a1a;
  font-weight: 600;
  line-height: 1.3;
}

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

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

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

p {
  margin-bottom: 1rem;
  color: #555555;
}

.navbar {
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2e7d32 !important;
}

.nav-link {
  color: #333333 !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #2e7d32 !important;
}

.hero-section {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.section {
  padding: 80px 0;
}

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

.section-subtle {
  background: linear-gradient(180deg, #f9fbf9 0%, #ffffff 100%);
}

.section-accent {
  background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
}

.section-title {
  color: #1a1a1a;
  margin-bottom: 2rem;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #2e7d32 0%, #4caf50 100%);
  margin-top: 1rem;
  border-radius: 2px;
}

.section-title-center::after {
  margin-left: auto;
  margin-right: auto;
}

.content-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #e8e8e8;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.content-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

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

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

.content-image-small {
  height: 180px;
}

.info-box {
  background: linear-gradient(135deg, #fff8e1 0%, #fffde7 100%);
  border-left: 4px solid #ffc107;
  border-radius: 0 8px 8px 0;
  padding: 1.5rem;
  margin: 2rem 0;
}

.disclaimer-box {
  background: linear-gradient(135deg, #e3f2fd 0%, #e8f5e9 100%);
  border: 1px solid #bbdefb;
  border-radius: 8px;
  padding: 2rem;
  margin: 2rem 0;
}

.btn-primary-custom {
  background: linear-gradient(135deg, #2e7d32 0%, #388e3c 100%);
  border: none;
  color: #ffffff;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.btn-primary-custom:hover {
  background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
}

.btn-outline-custom {
  background: transparent;
  border: 2px solid #2e7d32;
  color: #2e7d32;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-outline-custom:hover {
  background: #2e7d32;
  color: #ffffff;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: #2e7d32;
  font-size: 1.5rem;
}

.list-styled {
  list-style: none;
  padding: 0;
}

.list-styled li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: #555555;
}

.list-styled li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 8px;
  height: 8px;
  background: #2e7d32;
  border-radius: 50%;
}

.footer {
  background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
  color: #cccccc;
  padding: 60px 0 30px;
}

.footer h3 {
  color: #ffffff;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

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

.footer a {
  color: #aaaaaa;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #4caf50;
}

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

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

.footer-bottom {
  border-top: 1px solid #333333;
  margin-top: 40px;
  padding-top: 30px;
}

.footer-disclaimer {
  background: rgba(46, 125, 50, 0.1);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: #4caf50;
}

.page-header {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  padding: 80px 0 60px;
  margin-bottom: 0;
}

.page-header h1 {
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.page-header p {
  color: #555555;
  font-size: 1.125rem;
}

.form-control {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 0.875rem 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
  border-color: #2e7d32;
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.15);
}

.contact-info-card {
  background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
  border-radius: 12px;
  padding: 2rem;
}

.policy-content {
  background: #ffffff;
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.policy-content h2 {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eeeeee;
}

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

.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;
}

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

.thank-you-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 3rem;
  color: #2e7d32;
}

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

  h2 {
    font-size: 1.75rem;
  }

  .hero-section {
    min-height: auto;
    padding: 60px 0;
  }

  .hero-image {
    height: 280px;
    margin-top: 2rem;
  }

  .section {
    padding: 60px 0;
  }
}

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

  h2 {
    font-size: 1.5rem;
  }

  .hero-image {
    height: 220px;
  }

  .content-card {
    padding: 1.5rem;
  }

  .section {
    padding: 50px 0;
  }

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