/* Reset & Basic Styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
}

:root {
  --bg-primary: #e8ecf4;
  --bg-secondary: #f0f4f8;
  --bg-card: #e8ecf4;
  --text-primary: #2d3748;
  --text-secondary: #4a5568;
  --text-accent: #3182ce;
  --shadow-light: #ffffff;
  --shadow-dark: #c8d0db;
  --border-radius: 20px;
  --border-radius-small: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: 'Poppins', 'Open Sans', sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: linear-gradient(135deg, #e8ecf4 0%, #f0f4f8 100%);
  min-height: 100vh;
  font-weight: 400;
}

/* Neumorphic Base Styles */
.neu-convex {
  background: var(--bg-card);
  box-shadow: 
    8px 8px 16px var(--shadow-dark),
    -8px -8px 16px var(--shadow-light);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.neu-concave {
  background: var(--bg-card);
  box-shadow: 
    inset 8px 8px 16px var(--shadow-dark),
    inset -8px -8px 16px var(--shadow-light);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.neu-flat {
  background: var(--bg-card);
  box-shadow: 
    4px 4px 8px var(--shadow-dark),
    -4px -4px 8px var(--shadow-light);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

/* Header Styles */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-primary);
  padding: 1.5rem 3rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 
    0 4px 20px rgba(200, 208, 219, 0.3),
    0 2px 8px rgba(200, 208, 219, 0.2);
  backdrop-filter: blur(10px);
}

.logo {
  border-radius: var(--border-radius-small);
  background: var(--bg-card);
  box-shadow: 
    6px 6px 12px var(--shadow-dark),
    -6px -6px 12px var(--shadow-light);
  transition: var(--transition);
}

.logo:hover {
  transform: translateY(-2px);
  box-shadow: 
    8px 8px 16px var(--shadow-dark),
    -8px -8px 16px var(--shadow-light);
}

.logo img {
  height: 45px;
  width: auto;
  display: block;
}

/* Navigation Styles */
.navbar {
  position: relative;
}

.hamburger {
  display: none;
  flex-direction: column;
  background: var(--bg-card);
  border: none;
  padding: 0.8rem;
  border-radius: var(--border-radius-small);
  cursor: pointer;
  box-shadow: 
    6px 6px 12px var(--shadow-dark),
    -6px -6px 12px var(--shadow-light);
  transition: var(--transition);
  z-index: 999999999999 !important;
  position: relative;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  margin: 3px 0;
  transition: var(--transition);
  border-radius: 2px;
  z-index: 999999999999 !important;

}

.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
  z-index: 999999999999 !important;

}

.hamburger.active span:nth-child(2) {
  z-index: 999999999999 !important;

  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
  z-index: 999999999999 !important;

}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 1rem;
  background: var(--bg-card);
  padding: 0.8rem 1.5rem;
  border-radius: var(--border-radius);
  z-index: 999999999999 !important;

  box-shadow: 
    inset 4px 4px 8px var(--shadow-dark),
    inset -4px -4px 8px var(--shadow-light);
}

.nav-menu li a {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  padding: 0.8rem 1.2rem;
  border-radius: var(--border-radius-small);
  display: block;
  transition: var(--transition);
  font-size: 0.9rem;
  z-index: 999999999999 !important;

}

.nav-menu li a:hover {
  color: var(--text-accent);
  background: var(--bg-card);
  box-shadow: 
    4px 4px 8px var(--shadow-dark),
    -4px -4px 8px var(--shadow-light);
  transform: translateY(-1px);
  z-index: 999999999999 !important;

}

/* Hero Section */
.hero-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  margin: 0;
  padding: 2rem;
  background: linear-gradient(135deg, #e8ecf4 0%, #f0f4f8 100%);
}

.hero-text {
  text-align: center;
  padding: 3rem 2rem;
  margin: 2rem auto;
  max-width: 800px;
  background: var(--bg-card);
  border-radius: var(--border-radius);
  box-shadow: 
    12px 12px 24px var(--shadow-dark),
    -12px -12px 24px var(--shadow-light);
  position: relative;
  z-index: 0 !important;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(200, 208, 219, 0.3);
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: 1.3rem;
  color: var(--text-secondary);
  font-weight: 400;
  line-height: 1.8;
}

/* Section General Styles */
section {
  padding: 5rem 2rem;
  position: relative;
}

section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--shadow-dark), transparent);
}

/* About Section */
.about-section {
  background: var(--bg-secondary);
}

.about-section .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
}

.about-text {
  flex: 1 1 400px;
  padding: 3rem;
  background: var(--bg-card);
  border-radius: var(--border-radius);
  box-shadow: 
    12px 12px 24px var(--shadow-dark),
    -12px -12px 24px var(--shadow-light);
}

.about-text h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--text-primary);
  position: relative;
}

.about-text h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--text-accent), var(--text-primary));
  border-radius: 2px;
}

.about-text p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* Products Section */
.products-section {
  background: var(--bg-primary);
  padding: 5rem 2rem;
}

.products-section .container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.products-section h2 {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 4rem;
  font-weight: 400;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.product-card {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: 
    12px 12px 24px var(--shadow-dark),
    -12px -12px 24px var(--shadow-light);
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--text-accent), var(--text-primary));
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 
    16px 16px 32px var(--shadow-dark),
    -16px -16px 32px var(--shadow-light);
}

.product-card img {
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: var(--border-radius-small);
  margin-bottom: 1.5rem;
  transition: var(--transition);
  box-shadow: 
    6px 6px 12px var(--shadow-dark),
    -6px -6px 12px var(--shadow-light);
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-card h3 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-accent);
}

.product-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.product-learn-more {
  background: linear-gradient(135deg, var(--text-accent), var(--text-primary));
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: var(--border-radius-small);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
  font-size: 0.9rem;
}

.product-learn-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(49, 130, 206, 0.4);
}

.product-card.clickable {
  cursor: pointer;
}

.product-card.clickable:hover .product-learn-more {
  background: linear-gradient(135deg, var(--text-primary), var(--text-accent));
}

/* HSA Section */
.hsa-section {
  background: var(--bg-secondary);
  text-align: center;
  padding: 4rem 2rem;
}

.hsa-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem;
  background: var(--bg-card);
  border-radius: var(--border-radius);
  box-shadow: 
    12px 12px 24px var(--shadow-dark),
    -12px -12px 24px var(--shadow-light);
}

.hsa-container h2 {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Retail Partners Section */
.parentContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  flex-direction: column;
  background: var(--bg-primary);
  padding: 5rem 2rem 2rem 2rem;
}

#retail {
  padding: 2rem 0 !important;
}

.grid-container {
  width: 90%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin: 2rem 0;
  padding: 3rem;
  background: var(--bg-card);
  border-radius: var(--border-radius);
  box-shadow: 
    12px 12px 24px var(--shadow-dark),
    -12px -12px 24px var(--shadow-light);
  transition: var(--transition);
  align-items: center;
}

.grid-container:hover {
  transform: translateY(-3px);
  box-shadow: 
    16px 16px 32px var(--shadow-dark),
    -16px -16px 32px var(--shadow-light);
}

.imageContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
  border-radius: var(--border-radius-small);
  padding: 1rem;
}

.retailerLogo, .retailerLogo2 {
  max-width: 80%;
  height: auto;
  transition: var(--transition);
}

.retailerLogo:hover, .retailerLogo2:hover {
  transform: scale(1.05);
}

.grid-container h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.grid-container p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--text-primary) 0%, #1a202c 100%);
  color: white;
  text-align: center;
  padding: 2rem 2rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.footer-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer a {
  text-decoration: none;
  color: white;
  transition: var(--transition);
}

.footer a:hover {
  color: #90cdf4;
}

.smalltext {
  font-size: 0.8rem;
  opacity: 0.7;
  margin-top: 1rem;
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: var(--bg-card);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  box-shadow: 
    8px 8px 16px var(--shadow-dark),
    -8px -8px 16px var(--shadow-light);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 
    12px 12px 24px var(--shadow-dark),
    -12px -12px 24px var(--shadow-light);
}

.scroll-to-top:active {
  transform: translateY(-1px);
  box-shadow: 
    inset 4px 4px 8px var(--shadow-dark),
    inset -4px -4px 8px var(--shadow-light);
}

.scroll-to-top svg {
  color: var(--text-accent);
  transition: var(--transition);
}

.scroll-to-top:hover svg {
  color: var(--text-primary);
  transform: translateY(-1px);
}

/* Floating Animations */
.animate-element {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-element.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation delays for product cards */
.product-card:nth-child(1) {
  transition-delay: 0.1s;
}

.product-card:nth-child(2) {
  transition-delay: 0.2s;
}

.product-card:nth-child(3) {
  transition-delay: 0.3s;
}

.product-card:nth-child(4) {
  transition-delay: 0.4s;
}

/* Interactive Showcase Section */
.showcase-section {
  background: var(--bg-secondary);
  padding: 5rem 2rem;
}

.showcase-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.showcase-section h2 {
  font-size: 2.8rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--text-primary);
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.showcase-section .section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 4rem;
}

/* Before/After Slider */
.before-after-container {
  margin-bottom: 5rem;
  text-align: center;
}

.before-after-container h3 {
  font-size: 2.2rem;
  color: var(--text-primary);
  margin-bottom: 2rem;
  font-weight: 600;
}

.before-after-slider {
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg-card);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 
    12px 12px 24px var(--shadow-dark),
    -12px -12px 24px var(--shadow-light);
}

.slider-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-small);
  height: 300px;
}

.before-image, .after-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.after-image {
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0.3s ease;
}

.slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  cursor: ew-resize;
  z-index: 10;
}

.slider-line {
  width: 3px;
  height: 100%;
  background: white;
  margin: 0 auto;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.slider-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  color: var(--text-accent);
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  font-weight: 600;
}

.before-label {
  color: var(--text-secondary);
}

.after-label {
  color: var(--text-accent);
}

/* Benefits Timeline */
.benefits-timeline {
  margin-bottom: 5rem;
  text-align: center;
}

.benefits-timeline h3 {
  font-size: 2.2rem;
  color: var(--text-primary);
  margin-bottom: 3rem;
  font-weight: 600;
}

.timeline-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline-item {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: var(--border-radius);
  position: relative;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 
    8px 8px 16px var(--shadow-dark),
    -8px -8px 16px var(--shadow-light);
}

.timeline-item:hover, .timeline-item.active {
  transform: translateY(-5px);
  box-shadow: 
    12px 12px 24px var(--shadow-dark),
    -12px -12px 24px var(--shadow-light);
}

.timeline-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--text-secondary);
  margin: 0 auto 1rem;
  transition: var(--transition);
}

.timeline-item.active .timeline-dot {
  background: var(--text-accent);
  box-shadow: 0 0 20px var(--text-accent);
}

.timeline-content h4 {
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Product Finder Quiz */
.product-finder {
  text-align: center;
}

.product-finder h3 {
  font-size: 2.2rem;
  color: var(--text-primary);
  margin-bottom: 2rem;
  font-weight: 600;
}

.quiz-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-card);
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: 
    12px 12px 24px var(--shadow-dark),
    -12px -12px 24px var(--shadow-light);
}

.quiz-question h4 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 2rem;
}

.quiz-options {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.quiz-option {
  background: var(--bg-card);
  border: 2px solid transparent;
  padding: 1.2rem;
  border-radius: var(--border-radius-small);
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
  color: var(--text-primary);
  box-shadow: 
    6px 6px 12px var(--shadow-dark),
    -6px -6px 12px var(--shadow-light);
}

.quiz-option:hover {
  border-color: var(--text-accent);
  transform: translateY(-2px);
}

.quiz-result {
  animation: fadeIn 0.5s ease-in-out;
}

.recommended-product {
  display: flex;
  align-items: center;
  gap: 2rem;
  text-align: left;
  margin-top: 2rem;
}

.recommended-product img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: var(--border-radius-small);
  box-shadow: 
    6px 6px 12px var(--shadow-dark),
    -6px -6px 12px var(--shadow-light);
}

.result-info h5 {
  font-size: 1.4rem;
  color: var(--text-accent);
  margin-bottom: 0.5rem;
}

.cta-button {
  background: linear-gradient(135deg, var(--text-accent), var(--text-primary));
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: var(--border-radius-small);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 1rem;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(49, 130, 206, 0.4);
}

/* Product Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--bg-card);
  max-width: 900px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: var(--border-radius);
  position: relative;
  transform: scale(0.8);
  transition: var(--transition);
  box-shadow: 
    20px 20px 40px var(--shadow-dark),
    -20px -20px 40px var(--shadow-light);
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--bg-card);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  box-shadow: 
    6px 6px 12px var(--shadow-dark),
    -6px -6px 12px var(--shadow-light);
}

.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 3rem;
}

.modal-body img {
  width: 100%;
  border-radius: var(--border-radius-small);
  box-shadow: 
    8px 8px 16px var(--shadow-dark),
    -8px -8px 16px var(--shadow-light);
}

.modal-info h3 {
  font-size: 2rem;
  color: var(--text-accent);
  margin-bottom: 1rem;
}

.modal-benefits, .modal-ingredients {
  margin-top: 2rem;
}

.modal-benefits h4, .modal-ingredients h4 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.modal-benefits ul {
  list-style: none;
  padding: 0;
}

.modal-benefits li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
  position: relative;
  padding-left: 1.5rem;
}

.modal-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--text-accent);
  font-weight: bold;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .header {
    padding: 1rem 1.5rem;
  }
  
  .hamburger {
    display: flex;
    z-index: 9999 !important;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 280px;
    height: calc(100vh - 80px);
    flex-direction: column;
    background: var(--bg-card);
    padding: 2rem;
    gap: 1.5rem;
    transition: right 0.3s ease-in-out;
    box-shadow: 
      -8px 0 16px var(--shadow-dark),
      8px 0 16px var(--shadow-light);
    z-index: 9999999999998 !important;
  }
  
  .nav-menu.active {
    right: 0;
    z-index: 9999999999998 !important;

  }
  
  .nav-menu li a {
    padding: 1rem 1.5rem;
    width: 100%;
    text-align: center;
    font-size: 1.1rem;
    z-index: 9999999999998 !important;

  }
  
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .hero-text p {
    font-size: 1.1rem;
  }
  
  .about-text {
    padding: 2rem;
  }
  
  .about-text h2 {
    font-size: 2rem;
  }
  
  .products-section h2 {
    font-size: 2.2rem;
  }
  
  .product-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .grid-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    width: 95%;
    padding: 2rem;
  }
  
  .hsa-container {
    padding: 2rem;
  }
  
  .hsa-container h2 {
    font-size: 1.8rem;
  }
  
  .scroll-to-top {
    width: 50px;
    height: 50px;
    bottom: 1.5rem;
    right: 1.5rem;
  }
  
  .scroll-to-top svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  section {
    padding: 3rem 1rem;
  }
  
  .hero-text {
    padding: 2rem 1.5rem;
    margin: 1rem;
  }
  
  .hero-text h1 {
    font-size: 2rem;
  }
  
  .about-text, .product-card, .hsa-container {
    padding: 1.5rem;
  }
  
  .grid-container {
    padding: 1.5rem;
  }
  
  .nav-menu {
    width: 100%;
    right: -100%;
    top: 70px;
    height: calc(100vh - 70px);
    padding: 1.5rem;
    z-index: 9998 !important;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .scroll-to-top {
    width: 45px;
    height: 45px;
    bottom: 1rem;
    right: 1rem;
  }
  
  .scroll-to-top svg {
    width: 18px;
    height: 18px;
  }
  
  .showcase-section h2 {
    font-size: 2rem;
  }
  
  .before-after-container h3,
  .benefits-timeline h3,
  .product-finder h3 {
    font-size: 1.8rem;
  }
  
  .timeline-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .modal-body {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }
  
  .recommended-product {
    flex-direction: column;
    text-align: center;
  }
  
  .before-after-slider,
  .quiz-container {
    padding: 1.5rem;
  }
}
