<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
  font-family: "Poppins", sans-serif !important;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

/* Fix container overflow */
.container {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 768px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 4rem;
    padding-right: 4rem;
    max-width: 1512px;
    margin: 0 auto;
  }
}

/* Fix slider overflow */
.slider-container {
  overflow: hidden;
  position: relative;
  padding: 20px 0;
  width: 100%;
  margin: 0 auto;
}

.slider-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide-wrapper {
  flex: 0 0 auto;
  padding: 0 25px; /* white space between slides */
  box-sizing: border-box;
}

.slide {
  background: #F4E6E8;
  border-radius: 20px;
  padding: 20px;
  height: 100%;
}

/* Slide size for different breakpoints */
@media (min-width: 1024px) {
  .slide-wrapper {
    width: calc(100% / 3);
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .slide-wrapper {
    width: calc(100% / 2);
  }
}

@media (max-width: 767px) {
  .slide-wrapper {
    width: 100%;
  }
}

/* Fix grid overflow */
.grid {
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}

/* Ensure images don't overflow */
img {
  max-width: 100%;
  height: auto;
}

/* Fix hero section */
.hero-gradient {
  background: linear-gradient(180deg, #F6E6D7 0%, #FFFFFF 100%);
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
}

/* @media (min-width: 768px) {
  .hero-gradient {
    padding: 2rem 0;
  }
} */

/* @media (min-width: 1024px) {
  .hero-gradient {
    padding: 4rem 0;
  }
} */

/* Hero Text Styles */
.leading-tight {
  line-height: 1.2;
}

.leading-relaxed {
  line-height: 1.6;
}

/* Hero Image Container */
.float-animation {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Responsive Image Styles */
@media (min-width: 768px) {
  .float-animation img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }
}

/* Hero Underline Styles */
.hero-underline {
  position: relative;
  display: inline-block;
}

.hero-underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 8px;
  background: url('assets/imgs/underline-2.webp') no-repeat center center;
  background-size: contain;
}

/* Fix navigation */
.nav-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

/* Adjust menu gaps for different screen sizes */
@media (min-width: 1024px) and (max-width: 1200px) {
  nav {
    gap: 5px !important;
  }
  .nav-wrapper {
    gap: 12px !important;
  }
  
  
  .nav-link {
    font-size: 1rem;
    padding: 0.5rem;
  }
}

/* Fix mobile menu */
.mobile-menu {
  width: 100vw;
  max-width: 100vw;
  height: 100vh;
  overflow-y: auto;
  padding: 2rem;
}

.mobile-menu nav {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.mobile-menu a {
  width: 100%;
  text-align: center;
  padding: 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.mobile-menu a:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

@media (max-width: 1024px) {
  .mobile-menu {
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
  }
  
  .mobile-menu.active {
    transform: translateX(0);
  }
}

/* Fix benefit cards */
.benefit-card {
  width: 100%;
  max-width: 100%;
  background: #ffffff;
  border-radius: 12px;
  padding: 20px 15px;
  border: 1px solid #d9d9d9;
  transition: transform 0.3s ease;
}

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

.benefit-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

/* Fix comparison section */
.comparison-bg {
  width: 100%;
  overflow: hidden;
  background-color: #f6e6d7;
}

/* Fix FAQ section */
.faq-item {
  width: 100%;
  max-width: 100%;
  border-bottom: 1px solid #e5e7eb;
  padding: 24px 0;
}

.btn-gradient {
  background: linear-gradient(92deg, #e29528 0.24%, #d77205 100%);
  border-radius: 100px;
  box-shadow: 0px 4px 20px rgba(215, 114, 5, 0.25);
}

.feature-card {
  background: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 12px;
}

.calorie-badge {
  background: #f6e6d7;
  border: 1px solid black;
  border-radius: 9999px;
  padding: 8px 16px;
  font-size: 14px;
}

.slider-nav button {
  background: rgba(0, 0, 0, 0.8);
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-nav button:hover {
  background: rgba(0, 0, 0, 0.7);
}

.prev-button {
  left: 10px;
}

.next-button {
  right: 10px;
}

.cta-button {
  background: linear-gradient(92deg, #e29528 0.24%, #d77205 100%);
  border-radius: 100px;
  padding: 16px 32px;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0px 4px 20px rgba(215, 114, 5, 0.25);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0px 6px 24px rgba(215, 114, 5, 0.35);
}

.check-red {
  color: #ff4b4b;
}

.tick-green {
  color: #00c48c;
}

/* FAQ Styles */
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 24px 0;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
}

.faq-icon-minus {
  display: none;
}

details[open] .faq-icon-plus {
  display: none;
}

details[open] .faq-icon-minus {
  display: block;
}

.faq-content {
  padding-bottom: 24px;
}

/* Animation Styles */
.hover-scale {
  transition: transform 0.3s ease;
}

.hover-scale:hover {
  transform: scale(1.05);
}

.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.nav-link {
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 8px;
  background: url("assets/imgs/underline.webp") no-repeat;
  background-size: 100% 100%;
  background-position: bottom;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-link:hover::after {
  opacity: 1;
}

.nav-link.active::after {
  opacity: 1;
}

.btn-gradient {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(215, 114, 5, 0.35);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 1s ease-out forwards;
} 
/* Comparison Card Styles */
.comparison-card {
    position: relative;
  }
  .comparison-card .card-content {
    position: relative;
  }
  .comparison-card .card-content::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 40px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px);
    border-radius: 8px;
    z-index: 1;
  }
  </pre></body></html>