* {
  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: #333;
  background: #fff;
}

header {
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff !important;
  letter-spacing: 1px;
}

.navbar-toggler {
  border: 2px solid #fff;
  background: rgba(255, 255, 255, 0.2);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link {
  color: #fff !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem !important;
  border-radius: 8px;
}

.nav-link:hover,
.nav-link.active {
  background: rgba(255, 255, 255, 0.2);
}

.hero-section {
  position: relative;
  margin-bottom: 3rem;
}

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

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.8) 0%, rgba(255, 140, 66, 0.8) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-overlay h1 {
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-overlay p {
  color: #fff;
  font-size: 1.3rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.content-section {
  margin-bottom: 4rem;
}

.content-section h2 {
  color: #ff6b35;
  margin-bottom: 1.5rem;
  font-weight: bold;
}

.content-section h3 {
  color: #333;
  margin: 1.5rem 0 1rem;
  font-weight: 600;
}

.content-section p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.info-card,
.product-card,
.approach-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover,
.product-card:hover,
.approach-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.2);
}

.info-card img,
.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.info-card h3,
.product-card h3,
.approach-card h3 {
  color: #ff6b35;
  font-weight: bold;
  margin-bottom: 1rem;
}

.ingredients {
  margin-top: 1rem;
  padding: 1rem;
  background: linear-gradient(135deg, #fff5f0 0%, #ffe8dc 100%);
  border-radius: 8px;
  border-left: 4px solid #ff6b35;
}

.ingredients strong {
  color: #ff6b35;
}

.cta-section {
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  padding: 4rem 2rem;
  border-radius: 16px;
  color: #fff;
  margin: 4rem 0;
}

.cta-section h2 {
  color: #fff;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn-primary {
  background: #fff;
  color: #ff6b35;
  border: none;
  padding: 1rem 2rem;
  font-weight: bold;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #f5f5f5;
  color: #ff6b35;
  transform: scale(1.05);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #fff;
  color: #ff6b35;
}

.btn-outline-primary {
  border: 2px solid #ff6b35;
  color: #ff6b35;
  background: transparent;
}

.btn-outline-primary:hover {
  background: #ff6b35;
  color: #fff;
}

.disclaimer-section {
  background: #fff5f0;
  padding: 2rem;
  border-radius: 12px;
  border-left: 5px solid #ff6b35;
}

.quality-list,
.promise-grid {
  margin-top: 2rem;
}

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

.quality-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ff6b35;
  font-weight: bold;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.promise-item {
  background: linear-gradient(135deg, #fff5f0 0%, #ffe8dc 100%);
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid #ff6b35;
}

.promise-item h4 {
  color: #ff6b35;
  margin-bottom: 0.5rem;
}

.contact-info {
  background: #fff5f0;
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.contact-form .form-control {
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 0.75rem;
  transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: #ff6b35;
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

.faq-item {
  background: #fff5f0;
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  border-left: 4px solid #ff6b35;
}

.faq-item h4 {
  color: #ff6b35;
  margin-bottom: 0.5rem;
}

.thank-you-container {
  padding: 4rem 2rem;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.thank-you-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  color: #fff;
  font-size: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 2rem;
}

.policy-page {
  max-width: 900px;
  margin: 2rem auto;
  padding: 2rem;
}

.policy-page h1 {
  color: #ff6b35;
  margin-bottom: 1rem;
}

.policy-section {
  margin-bottom: 3rem;
}

.policy-section h2 {
  color: #ff6b35;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.policy-section h3 {
  color: #333;
  margin: 1.5rem 0 0.5rem;
  font-size: 1.2rem;
}

.disclaimer-highlight {
  background: linear-gradient(135deg, #fff5f0 0%, #ffe8dc 100%);
  padding: 2rem;
  border-radius: 12px;
  border-left: 5px solid #ff6b35;
}

footer {
  background: #2c2c2c;
  color: #fff;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

footer h4 {
  color: #ff6b35;
  margin-bottom: 1rem;
}

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

footer a:hover {
  color: #ff6b35;
}

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

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2c2c2c 0%, #3c3c3c 100%);
  color: #fff;
  padding: 1.5rem 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: none;
}

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

.cookie-consent p {
  margin-bottom: 0;
}

.cookie-consent a {
  color: #ff8c42;
  text-decoration: underline;
}

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

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

  .hero-image {
    height: 300px;
  }

  .cookie-consent .text-right {
    text-align: left !important;
    margin-top: 1rem;
  }

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

@media (min-width: 992px) {
  .container {
    max-width: 1140px;
  }
}
