:root {
  --primary-color: #5a9d7a;
  --secondary-color: #7eb09c;
  --accent-color: #f0a86e;
  --text-dark: #2c3e50;
  --text-light: #6c757d;
  --bg-light: #f8f9fa;
  --border-color: #dee2e6;
}

* {
  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);
  line-height: 1.6;
  overflow-x: hidden;
}

.brand-text {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
}

.navbar {
  transition: all 0.3s ease;
}

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

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--primary-color);
}

.hero-section {
  position: relative;
  min-height: 500px;
  overflow: hidden;
}

.hero-image {
  position: relative;
  width: 100%;
  height: 500px;
}

.hero-image img {
  object-fit: cover;
  height: 100%;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
  display: flex;
  align-items: center;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

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

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--primary-color);
  margin-top: 1rem;
}

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

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

.btn-primary:hover {
  background-color: #4a8a69;
  border-color: #4a8a69;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(90, 157, 122, 0.3);
}

.btn-secondary {
  background-color: var(--text-light);
  border-color: var(--text-light);
  color: white;
}

.btn-secondary:hover {
  background-color: #5a6268;
  border-color: #545b62;
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
}

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

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

.shadow {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.advice-card,
.belief-card,
.ingredient-card,
.product-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advice-card:hover,
.belief-card:hover,
.ingredient-card:hover,
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.footer {
  margin-top: 4rem;
}

.footer a {
  transition: opacity 0.3s ease;
}

.footer a:hover {
  opacity: 0.8;
  text-decoration: none;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2c3e50;
  color: white;
  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 a {
  color: var(--accent-color);
  text-decoration: underline;
}

.cookie-banner a:hover {
  color: #f5b97f;
}

.page-header {
  margin-top: 70px;
}

.contact-form-wrapper {
  background-color: var(--bg-light);
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(90, 157, 122, 0.25);
}

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

.checkmark-circle {
  display: inline-block;
}

.policy-content h2,
.policy-content h3 {
  color: var(--text-dark);
}

.policy-content ul {
  margin-left: 1.5rem;
}

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

.contact-box {
  border-left: 4px solid var(--primary-color);
}

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

.list-styled li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 1rem;
}

.list-styled li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.commitment-box {
  transition: transform 0.3s ease;
}

.commitment-box:hover {
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 400px;
  }

  .hero-image {
    height: 400px;
  }

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

  .section-title {
    font-size: 1.5rem;
  }

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

  .navbar-brand {
    font-size: 1.25rem;
  }
}

@media (max-width: 576px) {
  .hero-section {
    min-height: 300px;
  }

  .hero-image {
    height: 300px;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .btn-lg {
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
  }
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.text-primary {
  color: var(--primary-color) !important;
}

.border-primary {
  border-color: var(--primary-color) !important;
}
