:root {
  --primary: #f5c518;
  --primary-dark: #d4a817;
  --secondary: #2c3e50;
  --accent: #e67e22;
  --light: #f8f9fa;
  --dark: #212529;
  --gray: #6c757d;
  --white: #ffffff;
}

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

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

.navbar {
  transition: all 0.3s ease;
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  color: var(--secondary);
  transition: color 0.3s ease;
}

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

.nav-link {
  color: var(--secondary);
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

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

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn-outline-primary {
  border-color: var(--primary);
  color: var(--primary);
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.hero-section {
  padding: 150px 0 100px;
  background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
}

.hero-section h1 {
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.hero-section .lead {
  color: var(--gray);
  font-size: 1.25rem;
}

.page-header {
  padding: 150px 0 80px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
  color: var(--white);
  text-align: center;
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.page-header .lead {
  color: rgba(255, 255, 255, 0.9);
}

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

.section-title {
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--gray);
  font-size: 1.1rem;
}

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

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

.card-title {
  color: var(--secondary);
  font-weight: 600;
}

.principle-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.principle-card h4 {
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.feature-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

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

.food-category {
  background: var(--light);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary);
}

.food-category h5 {
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.prep-steps {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.prep-step {
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-left: 4px solid var(--primary);
  background: var(--light);
  border-radius: 4px;
}

.prep-step:last-child {
  margin-bottom: 0;
}

.prep-step h5 {
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

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

.testimonial-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--dark);
  margin-bottom: 1rem;
}

.testimonial-author {
  color: var(--gray);
  font-weight: 600;
  margin-bottom: 0;
}

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

.faq-item {
  background: var(--white);
  padding: 2rem;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--primary);
}

.faq-item h5 {
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.faq-item p {
  margin-bottom: 0;
  color: var(--dark);
}

.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--dark);
}

.cta-section h2 {
  color: var(--dark);
  font-weight: 700;
}

.cta-section .lead {
  color: var(--dark);
}

.cta-section .btn-primary {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
}

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

.service-list {
  padding-left: 0;
}

.service-item {
  background: var(--light);
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary);
}

.service-item h5 {
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.service-item:last-child {
  margin-bottom: 0;
}

.contact-info {
  margin-top: 2rem;
}

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

.contact-form-wrapper {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.contact-info-card {
  background: var(--light);
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary);
}

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

.contact-detail:last-child {
  margin-bottom: 0;
}

.contact-detail h5 {
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-detail a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-detail a:hover {
  color: var(--primary-dark);
}

.form-control {
  border: 2px solid var(--light);
  padding: 0.75rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(245, 197, 24, 0.25);
}

.form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

.thank-you-section {
  padding: 150px 0 100px;
  text-align: center;
}

.thank-you-icon {
  color: var(--primary);
}

.thank-you-actions .btn {
  margin: 0.5rem;
}

.legal-content {
  line-height: 1.8;
}

.legal-content h2 {
  color: var(--secondary);
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding-top: 1rem;
  border-top: 2px solid var(--light);
}

.legal-content h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-content h3 {
  color: var(--secondary);
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

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

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

.legal-content a {
  color: var(--primary);
  text-decoration: underline;
}

.legal-content a:hover {
  color: var(--primary-dark);
}

.footer {
  padding: 50px 0 20px;
}

.footer h5 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
}

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

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

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

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--secondary);
  color: var(--white);
  padding: 1.5rem 0;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  display: none;
}

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

.cookie-consent p {
  margin: 0;
  font-size: 0.9rem;
}

.cookie-consent a {
  color: var(--primary);
  text-decoration: underline;
}

.cookie-consent .btn-outline-light {
  color: var(--white);
  border-color: var(--white);
}

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

img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

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

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

@media (max-width: 991px) {
  .navbar-collapse {
    background: var(--white);
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .hero-section {
    padding: 120px 0 60px;
    text-align: center;
  }

  .page-header {
    padding: 120px 0 60px;
  }

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

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

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

@media (max-width: 767px) {
  .hero-section {
    padding: 100px 0 50px;
  }

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

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

  .thank-you-actions .btn {
    display: block;
    width: 100%;
    margin: 0.5rem 0;
  }

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