:root {
  --primary-color: #2563eb;
  --primary-dark: #1e40af;
  --secondary-color: #64748b;
  --text-dark: #1e293b;
  --text-light: #64748b;
  --bg-light: #f8fafc;
  --border-color: #e2e8f0;
  --success-color: #10b981;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}

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

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

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

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 0.75rem 1.5rem;
  font-weight: 600;
}

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

.hero-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
}

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

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

.card {
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-title {
  color: var(--primary-color);
  font-weight: 700;
}

.category-card {
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
}

.category-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-3px);
}

.category-card h4 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 1rem;
}

.needs-card {
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

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

.needs-card h4 {
  color: var(--primary-color);
  font-weight: 700;
}

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

.nutrient-info h5 {
  color: var(--text-dark);
  font-weight: 700;
}

.advice-box {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.quality-badge {
  background-color: var(--bg-light);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.quality-badge:hover {
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.quality-badge h4 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 1rem;
}

.testimonial-card {
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

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

.faq-item h5 {
  color: var(--primary-color);
  font-weight: 700;
}

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

.footer {
  background-color: #1e293b;
}

.footer h5 {
  font-weight: 700;
  margin-bottom: 1rem;
}

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

.footer a:hover {
  opacity: 0.8;
}

.page-header {
  padding: 4rem 0 3rem;
}

.page-header h1 {
  color: var(--text-dark);
}

.contact-form .form-group label {
  font-weight: 600;
  color: var(--text-dark);
}

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

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
}

.contact-info-card {
  border: 1px solid var(--border-color);
}

.opening-hours {
  border: 1px solid var(--border-color);
}

.principle-card {
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

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

.principle-card h4 {
  color: var(--primary-color);
  font-weight: 700;
}

.offer-card {
  transition: all 0.3s ease;
}

.offer-card:hover {
  transform: translateY(-5px);
}

.offer-card h4 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 1rem;
}

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

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

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

.policy-content h2 {
  color: var(--primary-color);
  font-weight: 700;
}

.policy-content h4 {
  color: var(--text-dark);
  font-weight: 700;
  margin-top: 1.5rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(30, 41, 59, 0.95);
  color: white;
  padding: 1.5rem;
  z-index: 10000;
  display: none;
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-settings-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
}

.cookie-settings-modal.show {
  display: flex;
}

.cookie-settings-content {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
}

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

.next-steps {
  border: 2px solid var(--border-color);
}

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

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

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-buttons button {
    width: 100%;
  }
}

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

section {
  overflow-x: hidden;
}
