:root {
  --primary-color: #1c352a;
  --secondary-color: #fcfaf5;
  --text-color: #333333;
  --text-light: #666666;
  --border-color: #e0e0e0;
}

* {
  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-color);
  background-color: var(--secondary-color);
  line-height: 1.6;
}

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

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

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

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

.hero-section {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #f5f3ed 100%);
  padding: 3rem 0;
}

.hero-image-wrapper {
  margin-bottom: 2rem;
  border-radius: 12px;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
}

.hero-content {
  text-align: center;
  padding: 2rem 0;
}

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

.hero-content .lead {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.disclaimer-badge {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
}

.page-header {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #f5f3ed 100%);
  padding: 4rem 0;
  text-align: center;
}

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

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

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

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

.content-section h2 {
  color: var(--primary-color);
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

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

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

.section-img {
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.cta-link {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 2px;
  transition: opacity 0.3s ease;
}

.cta-link:hover {
  opacity: 0.7;
  color: var(--primary-color);
  text-decoration: none;
}

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

.btn-primary:hover {
  background-color: #152a21;
  border-color: #152a21;
}

.disclaimer-box {
  background-color: #fff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  border-left: 4px solid var(--primary-color);
}

.disclaimer-box h2 {
  margin-bottom: 1rem;
}

.disclaimer-box p {
  margin-bottom: 0.75rem;
}

.disclaimer-box p:last-child {
  margin-bottom: 0;
}

.disclaimer-box ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}

.disclaimer-box ul li {
  margin-bottom: 0.5rem;
}

.principle-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  height: 100%;
  border: 1px solid var(--border-color);
  transition: box-shadow 0.3s ease;
}

.principle-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.principle-card h3 {
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.legal-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

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

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

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

.contact-info {
  background-color: #fff;
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--border-color);
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  display: block;
}

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

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(28, 53, 42, 0.15);
}

.thank-you-content {
  padding: 3rem 0;
}

.thank-you-content h2 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.footer {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 3rem 0 1rem;
  margin-top: auto;
}

.footer h3 {
  color: var(--secondary-color);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer p {
  color: rgba(252, 250, 245, 0.85);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.footer-disclaimer {
  font-style: italic;
  opacity: 0.9;
}

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

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

.footer-links a {
  color: rgba(252, 250, 245, 0.85);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(252, 250, 245, 0.2);
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.8rem;
}

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

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

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-content p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--secondary-color);
}

.cookie-banner .btn-primary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border-color: var(--secondary-color);
}

.cookie-banner .btn-primary:hover {
  background-color: #f5f3ed;
  border-color: #f5f3ed;
}

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

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

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

  .section-img {
    margin-top: 2rem;
  }

  .order-lg-1,
  .order-lg-2 {
    order: 0 !important;
  }
}

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

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

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

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

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

  .disclaimer-badge {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
  }
}
