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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  background-color: #fefefe;
}

.navbar {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 1rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 700;
  color: #5a8a9a;
  letter-spacing: -0.5px;
}

.navbar-nav .nav-link {
  color: #5a8a9a;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #d4a574;
}

.hero-section {
  background: linear-gradient(135deg, #f0f4f5 0%, #e6eff2 100%);
  padding: 5rem 0;
  border-radius: 16px;
  margin: 2rem 0;
}

.hero-section h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.hero-section p {
  font-size: 1.2rem;
  color: #546e7a;
  line-height: 1.8;
}

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

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #5a8a9a, #d4a574);
  border-radius: 2px;
}

.section-text {
  font-size: 1.1rem;
  color: #546e7a;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.card-custom {
  border: none;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #ffffff;
  margin-bottom: 2rem;
}

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

.card-custom img {
  border-radius: 16px 16px 0 0;
  object-fit: cover;
  height: 220px;
  width: 100%;
}

.card-custom .card-body {
  padding: 2rem;
}

.card-custom .card-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.card-custom .card-text {
  font-size: 1rem;
  color: #546e7a;
  line-height: 1.7;
}

.btn-primary-custom {
  background: linear-gradient(135deg, #5a8a9a 0%, #4a7a8a 100%);
  border: none;
  color: white;
  padding: 0.9rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-primary-custom:hover {
  background: linear-gradient(135deg, #4a7a8a 0%, #3a6a7a 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(90, 138, 154, 0.3);
  color: white;
  text-decoration: none;
}

.btn-secondary-custom {
  background: linear-gradient(135deg, #d4a574 0%, #c49564 100%);
  border: none;
  color: white;
  padding: 0.9rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-secondary-custom:hover {
  background: linear-gradient(135deg, #c49564 0%, #b48554 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
  color: white;
  text-decoration: none;
}

.disclaimer-box {
  background: linear-gradient(135deg, #fff8f0 0%, #ffe8d6 100%);
  border-left: 4px solid #d4a574;
  padding: 1.5rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.disclaimer-box p {
  margin-bottom: 0;
  color: #5d4037;
  font-size: 0.95rem;
  line-height: 1.6;
}

.product-item {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease;
}

.product-item:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.product-item h4 {
  color: #2c3e50;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.product-category {
  display: inline-block;
  background: linear-gradient(135deg, #5a8a9a 0%, #4a7a8a 100%);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.ingredient-list {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 12px;
  margin: 1rem 0;
}

.ingredient-list h6 {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

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

.ingredient-list li {
  padding: 0.4rem 0;
  color: #546e7a;
  font-size: 0.95rem;
}

.ingredient-list li::before {
  content: "• ";
  color: #5a8a9a;
  font-weight: bold;
  margin-right: 0.5rem;
}

footer {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: #ecf0f1;
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

footer h5 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffffff;
}

footer p,
footer a {
  color: #bdc3c7;
  font-size: 0.95rem;
  line-height: 1.8;
}

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

footer a:hover {
  color: #d4a574;
}

footer ul {
  list-style: none;
  padding-left: 0;
}

footer ul li {
  margin-bottom: 0.6rem;
}

.footer-bottom {
  border-top: 1px solid rgba(236, 240, 241, 0.1);
  margin-top: 2rem;
  padding-top: 1.5rem;
  text-align: center;
  color: #95a5a6;
  font-size: 0.9rem;
}

.form-control {
  border-radius: 12px;
  border: 2px solid #e0e0e0;
  padding: 0.9rem 1.2rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: #5a8a9a;
  box-shadow: 0 0 0 0.2rem rgba(90, 138, 154, 0.15);
}

textarea.form-control {
  min-height: 140px;
}

.form-group label {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
}

.thank-you-box {
  background: linear-gradient(135deg, #e8f5f1 0%, #d4ebe4 100%);
  padding: 4rem 2rem;
  border-radius: 16px;
  text-align: center;
  margin: 3rem 0;
}

.thank-you-box h2 {
  color: #2c3e50;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.policy-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  margin-top: 2rem;
}

.policy-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.policy-content p {
  font-size: 1rem;
  color: #546e7a;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.policy-content ul,
.policy-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.policy-content li {
  color: #546e7a;
  margin-bottom: 0.8rem;
  line-height: 1.7;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: 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-bottom: 0;
  font-size: 0.95rem;
  color: #ecf0f1;
}

.cookie-banner a {
  color: #d4a574;
  text-decoration: underline;
}

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

.cookie-buttons button {
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.btn-cookie-accept {
  background: linear-gradient(135deg, #5a8a9a 0%, #4a7a8a 100%);
  color: white;
}

.btn-cookie-accept:hover {
  background: linear-gradient(135deg, #4a7a8a 0%, #3a6a7a 100%);
  transform: translateY(-1px);
}

.btn-cookie-decline {
  background: transparent;
  color: #ecf0f1;
  border: 2px solid #ecf0f1;
}

.btn-cookie-decline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.img-fluid {
  border-radius: 16px;
}

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

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

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

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

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