:root {
  --primary-brown: #8b5a2b;
  --primary-brown-dark: #6b4423;
  --primary-green: #5d8c5a;
  --primary-green-light: #7aa876;
  --bg-light: #faf8f5;
  --bg-cream: #f5f2ed;
  --text-dark: #2d2d2d;
  --text-gray: #5a5a5a;
  --text-light: #7a7a7a;
  --white: #ffffff;
  --border-light: #e8e4dd;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
}

.navbar {
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-brown) !important;
}

.nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
}

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

.hero-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-cream) 100%);
}

.hero-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.hero-section .lead {
  font-size: 1.125rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
}

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

.content-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.content-section h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.content-section p {
  color: var(--text-gray);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.bg-light-custom {
  background-color: var(--bg-light);
}

.btn-primary-custom {
  background-color: var(--primary-brown);
  border-color: var(--primary-brown);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-primary-custom:hover {
  background-color: var(--primary-brown-dark);
  border-color: var(--primary-brown-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-custom {
  background-color: transparent;
  border: 2px solid var(--primary-brown);
  color: var(--primary-brown);
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-outline-custom:hover {
  background-color: var(--primary-brown);
  color: var(--white);
  transform: translateY(-2px);
}

.rounded-custom {
  border-radius: 12px;
}

.rounded-custom-top {
  border-radius: 12px 12px 0 0;
}

.card-custom {
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.card-custom:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card-body-custom {
  padding: 1.5rem;
}

.page-header {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-cream) 100%);
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.page-header .lead {
  color: var(--text-gray);
  font-size: 1.125rem;
}

.disclaimer-box {
  background-color: var(--bg-cream);
  border-left: 4px solid var(--primary-green);
  padding: 2rem;
  border-radius: 0 12px 12px 0;
}

.disclaimer-box h2 {
  color: var(--primary-green);
  font-size: 1.5rem;
}

.disclaimer-box p {
  color: var(--text-gray);
}

.cta-section {
  background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 100%);
}

.footer-section {
  background-color: var(--text-dark);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-section h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--white);
}

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

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

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

.contact-info p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.disclaimer-text {
  font-size: 0.8rem !important;
  color: rgba(255, 255, 255, 0.5) !important;
  font-style: italic;
}

.copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin-bottom: 0;
}

.footer-section hr {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 2rem 0;
}

.contact-card {
  background-color: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.contact-card h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.contact-item {
  margin-bottom: 1.5rem;
}

.contact-item h3 {
  font-size: 1rem;
  color: var(--primary-brown);
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: var(--text-gray);
  margin-bottom: 0;
}

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

.form-control:focus {
  border-color: var(--primary-brown);
  box-shadow: 0 0 0 0.2rem rgba(139, 90, 43, 0.15);
}

.form-group label {
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.thank-you-box {
  background-color: var(--bg-light);
  border-radius: 12px;
  padding: 3rem;
  text-align: center;
}

.thank-you-box h2 {
  color: var(--primary-green);
}

.policy-content {
  background-color: var(--white);
}

.policy-content h2 {
  font-size: 1.5rem;
  color: var(--primary-brown);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

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

.policy-content p {
  color: var(--text-gray);
  line-height: 1.7;
}

.policy-content ul {
  color: var(--text-gray);
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.policy-content ul li {
  margin-bottom: 0.5rem;
}

.policy-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

.policy-footer p {
  color: var(--text-light);
  font-size: 0.9rem;
}

.disclaimer-highlight {
  background-color: var(--bg-cream);
  border-left: 4px solid var(--primary-green);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 0 8px 8px 0;
}

.disclaimer-highlight p {
  margin-bottom: 0;
  color: var(--text-dark);
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  padding: 1rem;
  z-index: 9999;
  display: none;
}

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

.cookie-content {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
  font-size: 0.9rem;
}

@media (max-width: 991px) {
  .hero-section {
    padding: 3rem 0;
  }

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

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

  .content-section h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding: 2rem 0;
    text-align: center;
  }

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

  .hero-section .col-lg-6:last-child {
    margin-top: 2rem;
  }

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

  .content-section .col-lg-6.order-lg-2 {
    margin-bottom: 1.5rem;
  }

  .page-header {
    padding: 2.5rem 0;
  }

  .page-header h1 {
    font-size: 1.75rem;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-section {
    padding: 3rem 0 1.5rem;
  }
}

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