:root {
  --primary-color: #4caf50;
  --primary-dark: #388e3c;
  --primary-light: #81c784;
  --text-dark: #212529;
  --text-muted: #6c757d;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --gradient-start: #4caf50;
  --gradient-end: #66bb6a;
}

* {
  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;
  background-color: var(--white);
}

.navbar {
  transition: all 0.3s ease;
}

.navbar-brand.brand-logo {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 1px;
}

.navbar-brand.brand-logo:hover {
  color: var(--primary-dark);
}

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

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

.btn-primary {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  border: none;
  border-radius: 8px;
  padding: 12px 32px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--gradient-start));
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(76, 175, 80, 0.3);
}

.btn-outline-primary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 8px;
  padding: 12px 32px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(76, 175, 80, 0.3);
}

.hero-section {
  position: relative;
  margin-top: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.85), rgba(102, 187, 106, 0.75));
  display: flex;
  align-items: center;
}

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

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

.card {
  transition: all 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.card-img-top {
  height: 250px;
  object-fit: cover;
}

.card-title {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.product-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.product-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.product-body {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.ingredients-box {
  background-color: var(--bg-light);
  border-radius: 8px;
  padding: 1rem;
  margin-top: auto;
}

.ingredients-box h6 {
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.ingredients-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.ingredients-list li {
  padding: 0.25rem 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.ingredients-list li:before {
  content: "• ";
  color: var(--primary-color);
  font-weight: bold;
  margin-right: 0.5rem;
}

.cta-section {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: var(--white);
}

.cta-section h2,
.cta-section .lead {
  color: var(--white);
}

.footer {
  background-color: #212529;
}

.footer h5,
.footer h6 {
  color: var(--white);
}

.footer a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-light);
}

.page-header {
  padding: 80px 0;
}

.policy-content h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.policy-content h5 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

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

.contact-info {
  background-color: var(--bg-light);
  border-radius: 12px;
  padding: 2rem;
}

.contact-item h5 {
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.contact-form-wrapper {
  background-color: var(--bg-light);
  border-radius: 12px;
  padding: 2rem;
}

.form-control {
  border-radius: 8px;
  border: 2px solid #e0e0e0;
  padding: 12px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
}

.info-box,
.faq-box {
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.info-box:hover,
.faq-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.info-box h5,
.faq-box h5 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 1rem;
}

.disclaimer-box {
  background-color: var(--bg-light);
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
}

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

.thank-you-icon svg {
  display: block;
  margin: 0 auto;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: var(--white);
  padding: 1.5rem 0;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  display: none;
}

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

.cookie-banner p {
  margin: 0;
  color: var(--white);
}

.cookie-banner a {
  color: var(--white);
  font-weight: 600;
}

.cookie-banner .btn-light {
  background-color: var(--white);
  color: var(--primary-color);
  border: none;
  font-weight: 600;
}

.cookie-banner .btn-outline-light {
  border: 2px solid var(--white);
  color: var(--white);
  font-weight: 600;
}

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

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .hero-section .display-3 {
    font-size: 2.5rem;
  }

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

  .cookie-banner .col-md-4 {
    margin-top: 1rem;
  }
}

@media (max-width: 576px) {
  .btn-primary,
  .btn-outline-primary {
    display: block;
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .cookie-banner .btn {
    display: block;
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
