/* ==========================================================================
   RESPIFLO - ADVANCED STYLESHEET (US ONLY CAMPAIGN)
   Theme: Medical Clean (White, Soft Cream #FFFBF4, Trust Green #52B74B)
   Updated: Converted from Dark Theme to High-Converting Light Theme
   ========================================================================== */

/* ===== GLOBAL RESETS ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; height: auto; display: block; }

:root {
  /* === LIGHT THEME BRAND COLORS === */
  --bg-main:         #ffffff; /* Clean White */
  --bg-hero:         #FFFDF8; /* Soft warm cream from the screenshot */
  --bg-light:        #F4F7F6; /* Very soft grey for alternating sections */
  
  --brand-green:     #52B74B; /* Trustworthy Medical Green */
  --brand-green-dark:#439A3D; /* Darker Green for hovers */
  --brand-gold:      #FFCC00; /* Bright yellow for review stars */
  --brand-red:       #FF0000; /* Urgency red */
  --banner-yellow:   #FFF6CC; /* Soft yellow for the urgency banner */
  
  --text-main:       #000000; /* High contrast dark text */
  --text-muted:      #131212; /* Softer text for paragraphs */
  --border-light:    #EAEAEA; /* Subtle borders */

  /* Shadows */
  --shadow-sm:       0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md:       0 4px 15px rgba(0, 0, 0, 0.1);
  --shadow-btn:      0 4px 15px rgba(82, 183, 75, 0.3);

  /* === TYPOGRAPHY SCALES === */
  --f-xs:    0.9rem;
  --f-sm:    1.05rem;
  --f-body:  1.15rem; 
  --f-md:    1.35rem;
  --f-lg:    1.55rem;
  --f-xl:    2.0rem;
  --f-2xl:   2.5rem;
  --f-3xl:   3.2rem;
  --f-price: 3.5rem;
  --lh-body: 1.6;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  font-size: var(--f-body);
  line-height: var(--lh-body);
  color: var(--text-main);
  background: var(--bg-main);
  overflow-x: hidden;
  padding-bottom: 120px;
}

/* ===== TYPOGRAPHY ===== */
/* Removed Oswald, using Poppins everywhere for that clean, modern look */
h1 { font-size: var(--f-3xl); font-weight: 800; line-height: 1.2; letter-spacing: -0.5px; color: #111; }
h2 { font-size: var(--f-2xl); font-weight: 800; line-height: 1.25; color: #111; }
h3 { font-size: var(--f-xl);  font-weight: 700; line-height: 1.3; }
h4 { font-size: var(--f-lg);  font-weight: 700; line-height: 1.35; color: #111; }

p, li { font-size: var(--f-body); line-height: var(--lh-body); margin-bottom: 18px; text-align: left; color: var(--text-muted); }
a { text-decoration: none; color: var(--brand-green); transition: color 0.3s ease; }
a:hover { color: var(--brand-green-dark); }

/* ===== UTILITIES (OVERRIDING OLD DARK CLASSES) ===== */
.section      { padding: 80px 24px; }
.wrap         { padding: 0 15px; }
.text-center  { text-align: center; }
.text-left    { text-align: left; }
.font-bold    { font-weight: 700; }

/* Converting old dark mode HTML classes to light mode automatically */
.bg-dark      { background: var(--bg-light); color: var(--text-main); border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }
.bg-light     { background: var(--bg-main); color: var(--text-main); }
.text-white   { color: var(--text-main) !important; }
.text-gold    { color: var(--brand-green) !important; } 
.text-light-grey { color: var(--text-muted) !important; }

.max-w-900    { max-width: 900px; margin-left: auto; margin-right: auto; width: 100%; }
.max-w-1000   { max-width: 1000px; margin-left: auto; margin-right: auto; width: 100%; }
.max-w-1100   { max-width: 1100px; margin-left: auto; margin-right: auto; width: 100%; }
.mx-auto      { margin-left: auto; margin-right: auto; }
.mt-20        { margin-top: 20px; }
.mt-36        { margin-top: 36px; }
.mb-20        { margin-bottom: 20px; }

.sec-title    { text-align: center; margin-bottom: 15px; color: #111; }
.sec-sub      { text-align: center; font-size: var(--f-md); margin-bottom: 50px; max-width: 900px; margin-left: auto; margin-right: auto; }
.brand-title  { color: var(--brand-green); }

/* ===== GREEN CTA BUTTONS ===== */
.btn-cta {
  display: inline-block; 
  background: linear-gradient(to bottom, #65C15C, #49A441);
  color: #ffffff !important; 
  padding: 18px 45px; 
  border-radius: 4px;
  font-weight: 800; 
  font-size: var(--f-lg);
  margin-top: 20px;
  box-shadow: var(--shadow-btn);
  transition: all 0.3s ease;
  text-align: center;
  text-transform: uppercase;
  border: 1px solid #3E9036;
  cursor: pointer;
}
.btn-cta:hover { 
  transform: translateY(-2px); 
  box-shadow: 0 6px 20px rgba(82, 183, 75, 0.4); 
  background: linear-gradient(to bottom, #52B74B, #3E9036);
}
.btn-cta-xl { 
  font-size: 1.4rem;  
  padding: 20px 40px;
  width: 100%;
  max-width: 500px;
}

/* ===== COMPLIANCE & GEO BANNERS ===== */
.geo-bar {
    position: fixed; top: 0; left: 0; width: 100%;
    background: #111111; color: #ffffff;
    text-align: center; padding: 10px 15px; font-size: var(--f-sm); font-weight: 600;
    z-index: 1050; letter-spacing: 0.5px;
}
.compliance-banner {
    position: fixed; bottom: 0; left: 0; width: 100%;
    background: #ffffff; border-top: 2px solid var(--border-light);
    color: var(--text-muted); padding: 15px 24px;
    z-index: 9999; display: flex; justify-content: space-between; align-items: center;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.05);
}
.compliance-content p { margin: 0; font-size: var(--f-xs); line-height: 1.4; text-align: left; }
.btn-accept {
    background: var(--brand-green); color: #ffffff; border: none;
    padding: 10px 20px; border-radius: 4px; cursor: pointer; font-weight: bold;
    margin-left: 20px; white-space: nowrap; transition: 0.2s;
}
.btn-accept:hover { background: var(--brand-green-dark); }

.compliance-buttons {
    display: flex;
    gap: 15px;
    margin-left: 20px;
}

.btn-reject {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid #cccccc;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
}

.btn-reject:hover {
    background: #f0f0f0;
    color: #111111;
}

@media (max-width: 600px) {
    .compliance-buttons {
        flex-direction: column;
        margin-left: 0;
        width: 100%;
        gap: 10px;
    }
    .btn-reject, .btn-accept {
        width: 100%;
        margin-left: 0;
        text-align: center;
    }
}

/* ===== NAVIGATION ===== */
nav {
  position: fixed; left: 0; right: 0; 
  z-index: 1000;
  background: var(--bg-main);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 80px; padding: 0 24px;
}
.nav-logo img { width: auto; height: 50px; } 
.nav-links { display: flex; gap: 30px; list-style: none; margin-bottom: -19px; }
.nav-links a { color: var(--text-main); font-weight: 500; font-size: var(--f-sm); transition: color .2s; }
.nav-links a:hover { color: var(--brand-green); }

.btn-nav {
  background: linear-gradient(to bottom, #65C15C, #49A441); 
  color: #ffffff !important;
  padding: 12px 30px; border-radius: 4px; 
  font-weight: 700; font-size: var(--f-sm); transition: all .2s;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  text-transform: uppercase;
}
.btn-nav:hover { transform: translateY(-1px); box-shadow: 0 4px 10px rgba(82, 183, 75, 0.3); }

.hamburger { display: none; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; padding: 5px; }
.hamburger span { display: block; width: 30px; height: 3px; background: #111; border-radius: 2px; }

.mob-menu { 
  display: none; flex-direction: column; gap: 18px; 
  padding: 20px 24px; background: var(--bg-main); 
  border-top: 1px solid var(--border-light); 
  position: absolute; top: 100%; left: 0; width: 100%;
  box-shadow: var(--shadow-md);
}
.mob-menu.open { display: flex; }
.mob-menu a { color: var(--text-main); font-weight: 600; font-size: var(--f-md); }

/* ===== HERO SECTION (CLEAN CREAM BACKGROUND) ===== */
.hero { 
  padding: 80px 24px 80px; 
  background: var(--bg-hero);
  color: var(--text-main);
  border-bottom: 1px solid var(--border-light);
}
.hero-grid {
    max-width: 1200px; 
    margin: 0 auto;
    display: grid; 
    grid-template-columns: 0.9fr 1.1fr; 
    gap: 50px; 
    align-items: center;
}

.hero-img img { 
    width: 100%;
    max-width: 500px; 
    margin: 0 auto; 
    filter: drop-shadow(0px 15px 25px rgba(0,0,0,0.1)); 
}

/* Responsive layout for mobile and tablets */
@media (max-width: 1024px) {
    .hero-grid { 
        grid-template-columns: 1fr; 
        text-align: center; 
    }
    
    .hero-img { 
        margin-bottom: 30px; 
    }
    
    .hero-content p { 
        text-align: center; 
    }
    
    .hero-bullets { 
        display: inline-block; 
        text-align: left; 
    }
    
    .trust-badge-top { 
        justify-content: center; 
    }
}
.trust-badge-top { font-size: var(--f-sm); color: #111; font-weight: 500; margin-bottom: 15px; display: flex; align-items: center; gap: 8px;}
.trust-badge-top::before { content: "★★★★★"; color: var(--brand-gold); font-size: 1.2rem; letter-spacing: 2px;}

.hero-content h1 span { color: var(--brand-green); }
.hero-content p { color: var(--text-muted); font-size: var(--f-lg); margin-bottom: 25px; }
.hero-bullets { list-style: none; margin-bottom: 25px; padding-left: 0; }
.hero-bullets li { font-size: var(--f-body); font-weight: 500; margin-bottom: 12px; color: var(--text-main); display: flex; align-items: center; gap: 10px;}

.hero-divider { display: none; } /* Kept clean without divider */

/* Styled like the yellow urgency banner in screenshot */
.sale-price { 
    background: var(--banner-yellow);
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: var(--f-md); 
    font-weight: 800; 
    color: #111; 
    margin-bottom: 10px; 
}
.stock-alert { font-size: var(--f-sm); color: var(--brand-red); font-weight: 600; margin-bottom: 20px; display: flex; align-items: center; }
.pulse-dot { display: inline-block; width: 10px; height: 10px; background: var(--brand-red); border-radius: 50%; margin-right: 10px; animation: pulse 1.5s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.5); } 70% { box-shadow: 0 0 0 10px rgba(255, 0, 0, 0); } 100% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0); } }

.secure-checkout { font-size: 0.9rem; color: var(--text-muted); margin-top: 15px; font-weight: 500; }
.hero-img img { max-width: 500px; margin: 0 auto; filter: drop-shadow(0px 15px 25px rgba(0,0,0,0.1)); }

/* ===== BENEFITS BADGES ===== */
.badges-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.badge-card { text-align: center; padding: 35px 20px; border: 1px solid var(--border-light); border-radius: 8px; background: var(--bg-main); transition: all .3s; box-shadow: var(--shadow-sm); }
.badge-card:hover { border-color: var(--brand-green); transform: translateY(-5px); box-shadow: var(--shadow-md); }
.badge-card img { width: 75px; height: 75px; object-fit: contain; margin: 0 auto 20px; display: block; }
.badge-card h4 { color: #111; margin-bottom: 15px; font-size: var(--f-lg); }
.badge-card p { font-size: 1.05rem; text-align: center; color: var(--text-muted); }

/* ===== TWO COLUMNS ===== */
.two-col { max-width: 1150px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.3fr; gap: 50px; align-items: center; }
.image-box img { width: 100%; border-radius: 8px; box-shadow: var(--shadow-md); border: 1px solid var(--border-light); }

/* ===== INGREDIENTS LIST ===== */
.ing-list { max-width: 1000px; margin: 0 auto; list-style: none; padding-left: 0; }
.ing-item { padding: 40px 35px 40px 100px; margin-bottom: 30px; background: var(--bg-main); border-radius: 8px; border: 1px solid var(--border-light); position: relative; display: grid; grid-template-columns: 150px 1fr; gap: 40px; align-items: center; transition: all 0.3s ease; box-shadow: var(--shadow-sm); }
.ing-item:hover { border-color: var(--brand-green); box-shadow: var(--shadow-md); }
.ing-num { width: 50px; height: 50px; background: var(--brand-green); color: #ffffff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: var(--f-xl); font-weight: 800; position: absolute; left: -20px; top: -20px; box-shadow: 0 4px 10px rgba(82, 183, 75, 0.4); }
.ing-img { width: 100%; max-width: 150px; border-radius: 50%; border: 3px solid var(--bg-light); margin: 0 auto; }
.ing-content h4 { color: var(--brand-green); margin-bottom: 15px; font-size: var(--f-xl); }

/* ===== COMPARISON TABLE ===== */
.comparison-table-wrapper { width: 100%; overflow-x: auto; margin-top: 30px; }
.ranking-table { width: 100%; border-collapse: collapse; background: var(--bg-main); border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-sm); min-width: 700px; border: 1px solid var(--border-light); }
.ranking-table th { background: var(--bg-light); color: #111; padding: 22px; text-align: left; font-size: var(--f-lg); border-right: 1px solid var(--border-light); border-bottom: 2px solid var(--border-light); }
.ranking-table th:last-child { border-right: none; }
.ranking-table td { padding: 20px; border-bottom: 1px solid var(--border-light); font-size: var(--f-body); color: var(--text-main); }
.ranking-table tr:last-child td { border-bottom: none; }
.ranking-table tr:hover { background-color: var(--bg-light); }

/* Fix text-gold inside the table since background is light now */
td.text-gold { color: var(--brand-green) !important; font-weight: 800;}
.text-red { color: var(--brand-red); font-weight: 700; }

/* ===== TESTIMONIALS ===== */
.testi-grid { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.testi-card { background: var(--bg-main); border-radius: 8px; padding: 40px; text-align: center; border: 1px solid var(--border-light); box-shadow: var(--shadow-sm); }
.stars { font-size: 1.6rem; color: var(--brand-gold); margin-bottom: 10px; letter-spacing: 2px;}
.verified { color: var(--brand-green); font-weight: 700; font-size: var(--f-sm); margin-bottom: 15px; }
.testi-headline { font-size: var(--f-xl); color: #111; margin-bottom: 15px; font-weight: 800;}
.testi-text { font-style: italic; color: var(--text-muted); margin-bottom: 20px; text-align: center;}
.testi-name { font-weight: 700; color: #111; font-size: 1.1rem; }

/* ===== PRICING PACKAGES ===== */

/* ===== GUARANTEE ===== */
.mb-inner { display: grid; grid-template-columns: 280px 1fr; gap: 50px; align-items: center; }
.mb-inner img { width: 100%; max-width: 280px; }
.mb-inner h3 { margin-bottom: 20px; font-size: var(--f-2xl); line-height: 1.2; color: #111;}

/* ===== FAQ ===== */
.faq-list { max-width: 900px; margin: 0 auto; }
.faq-item { background: var(--bg-main); border-radius: 4px; margin-bottom: 15px; border: 1px solid var(--border-light); overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-q { width: 100%; background: none; border: none; padding: 25px 30px; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-size: var(--f-lg); font-weight: 700; color: #111; font-family: inherit; transition: background 0.3s; }
.faq-q:hover { background: var(--bg-light); }
.faq-arrow { color: var(--brand-green); transition: transform .3s; font-size: 1.2rem; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-ans { max-height: 0; overflow: hidden; transition: all .4s ease; padding: 0 30px; }
.faq-item.open .faq-ans { max-height: 800px; padding: 0 30px 25px; }
.faq-ans p { margin-bottom: 0; color: var(--text-muted); }

/* ===== FOOTER ===== */
footer { background: #111111; color: #E0E0E0; padding: 60px 24px 40px; text-align: center; border-top: 4px solid var(--brand-green); }
.foot-disc { font-size: 0.9rem; line-height: 1.6; text-align: justify; text-align-last: center; opacity: 0.8; }
.foot-disc p { margin-bottom: 15px; text-align: center; color: #E0E0E0; }
.foot-links { display: flex; justify-content: center; gap: 25px; margin: 30px 0 20px; flex-wrap: wrap; }
.foot-links a { color: #E0E0E0; font-weight: 600; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 0.5px; }
.foot-links a:hover { color: var(--brand-green); }
.contact-info a.text-gold { color: var(--brand-green) !important;}
.foot-copy { font-size: 0.85rem; opacity: 0.6; margin-top: 15px;}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  :root {
    --f-body: 1.1rem; --f-md: 1.25rem; --f-lg: 1.4rem;
    --f-xl: 1.7rem; --f-2xl: 2.1rem; --f-3xl: 2.6rem; --f-price: 2.8rem;
  }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-content p { text-align: center; }
  .hero-bullets { display: inline-block; text-align: left; }
  .two-col, .mb-inner, .testi-grid { grid-template-columns: 1fr; text-align: center; }
  .pricing-grid, .badges-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .badges-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }
  .p-card.pop { padding-top: 40px; }
  
  .ing-item { grid-template-columns: 1fr; text-align: center; padding: 50px 25px 30px; }
  .ing-num { left: 50%; transform: translateX(-50%); top: -25px; }
  
  .mb-inner img { margin: 0 auto; }
  .trust-badge-top { justify-content: center; }
}

@media (max-width: 600px) {
  :root {
    --f-body: 1.05rem; --f-md: 1.15rem; --f-lg: 1.25rem;
    --f-xl: 1.5rem; --f-2xl: 1.8rem; --f-3xl: 2.2rem; --f-price: 2.5rem;
  }
  /* Top notification bar */
.geo-bar {
    position: relative; 
    width: 100%;
    background: #111111; 
    color: #ffffff;
    text-align: center; 
    padding: 10px 15px; 
    font-size: var(--f-sm); 
    font-weight: 600;
    z-index: 1050; 
    letter-spacing: 0.5px;
}

/* Main navigation bar */
nav {
    position: relative; 
    width: 100%;
    z-index: 1000;
    background: var(--bg-main);
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}
  .badges-grid { grid-template-columns: 1fr; }
  .btn-cta, .btn-cta-xl { padding: 16px 20px; font-size: var(--f-md); }
  .section { padding: 50px 20px; }
  .foot-disc { text-align: left; text-align-last: left; }
  .compliance-banner { flex-direction: column; gap: 15px; text-align: center; padding: 15px; }
  .btn-accept { margin-left: 0; width: 100%; }
}

/* ===== UPDATED BENEFITS GRID (3x2 LAYOUT) ===== */
.badges-grid { 
  max-width: 1200px; 
  margin: 0 auto; 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); /* 3 columns for desktop */
  gap: 25px; 
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 1024px) {
  .badges-grid { 
    grid-template-columns: repeat(2, 1fr); /* 2 columns for tablets */
  }
}

@media (max-width: 600px) {
  .badges-grid { 
    grid-template-columns: 1fr; /* 1 column for mobile */
  }
}

/* Styled testimonial photos */
.testi-photo {
    width: 100px; 
    height: 100px; 
    border-radius: 50%; 
    object-fit: cover; 
    margin: 0 auto 20px; 
    border: 3px solid var(--brand-green);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* ===== PRICING PACKAGES (IMAGE MATCHED) ===== */
.pricing-grid { 
    max-width: 1100px; 
    margin: 0 auto; 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px; 
    align-items: stretch; 
    text-align: center; 
}

.p-card { 
    background: var(--bg-main); 
    border-radius: 8px; 
    border: 1px solid var(--border-light); 
    position: relative; 
    overflow: hidden; 
    transition: all .3s; 
    display: flex; 
    flex-direction: column; 
    box-shadow: var(--shadow-sm); 
}

.p-card:hover { 
    transform: translateY(-8px); 
    box-shadow: var(--shadow-md); 
}

/* Peach Header & Badges */
.p-card-header {
    background-color: #F8D0B3; 
    padding: 20px 15px;
    text-align: center;
}

.p-badge {
    background-color: #ffffff;
    color: #111111;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 4px 18px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.p-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #111111;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* Card Body & Layout */
.p-card-body {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.p-card-body img { 
    width: 100%; 
    max-width: 220px; 
    margin: 0 auto 20px; 
    transition: transform .3s; 
}

.p-card-body img:hover { 
    transform: scale(1.05); 
}

/* Pricing Row with Flexbox */
.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.price-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-big { 
    font-size: 3rem; 
    font-weight: 800; 
    color: #111111; 
    line-height: 1; 
}

.price-per {
    font-size: 0.85rem;
    color: #888888;
    line-height: 1.2;
    text-align: left;
    font-weight: 500;
}

.save-badge {
    background-color: #FFEA00;
    color: #111111;
    font-weight: 800;
    font-size: 1rem;
    padding: 8px 12px;
}

/* Retail Price with Red Strikethrough */
.retail-price {
    text-align: left;
    color: #A0A0A0;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.retail-price s {
    text-decoration: line-through;
    text-decoration-color: #FF0000;
}

/* Black Total Price Bar */
.total-bar {
    background-color: #000000;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 12px 25px;
    text-align: left;
    margin: 0 -25px 20px -25px; 
}

/* Feature Checkmarks */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    flex-grow: 1;
}

.feature-list li {
    font-size: 1rem;
    color: #333333;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

/* Button & Secure Text Adjustments */
.p-card-body .btn-cta {
    width: 100%;
    margin-top: auto;
}

.secure-tag { 
    font-size: 0.85rem; 
    color: #111111; 
    margin-top: 15px; 
    font-weight: 700; 
    text-transform: uppercase;
}

/* Pricing Grid Responsive Fallback */
@media (max-width: 1024px) {
    .pricing-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
}

/* ===== FINAL CTA SECTION ===== */
.cta-final-section {
    padding: 60px 24px;
    background: #FFFBF4; /* Soft cream to match your theme */
    border-top: 2px solid var(--brand-green);
    border-bottom: 2px solid var(--brand-green);
}

.cta-final-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.cta-final-img {
    flex: 0 0 200px;
}

.cta-final-img img {
    width: 100%;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
}

.cta-final-content {
    text-align: left;
}

.cta-final-content h2 {
    font-size: 2.2rem;
    color: #111;
    margin-bottom: 15px;
}

.cta-final-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* Mobile responsive for CTA block */
@media (max-width: 768px) {
    .cta-final-inner {
        flex-direction: column;
        text-align: center;
    }
    .cta-final-content {
        text-align: center;
    }
}
/* Styling for the dedicated ingredients image section */
.ingredients-main-image {
    max-width: 900px;
    margin: 30px auto 0;
}

.ingredients-main-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 2px solid var(--border-light);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.ingredients-main-image img:hover {
    transform: scale(1.02);
}

/* Styling for the badges row */
.trust-badges-section {
    padding: 40px 20px;
    background-color: #ffffff;
    border-bottom: 1px solid var(--border-light);
}

.badges-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.badges-container img {
    width: 100%;
    max-width: 140px; /* Adjust size to fit your design */
    height: auto;
    transition: transform 0.3s ease;
}

.badges-container img:hover {
    transform: scale(1.05);
}

/* Responsive adjustment for mobile */
@media (max-width: 768px) {
    .badges-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr); /* 3 per row on tablet */
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .badges-container {
        grid-template-columns: repeat(2, 1fr); /* 2 per row on mobile */
    }
}

/* ==========================================================================
   CONTACT PAGE & LEGAL PAGES STYLES
   ========================================================================== */

/* Contact Page Layout */
.contact-wrap { 
    max-width: 1100px; 
    margin: 120px auto 80px; 
    padding: 0 24px; 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 50px; 
}

.contact-info-box { 
    background: #F4FAF3; /* Soft green tint */
    padding: 40px; 
    border-radius: 8px; 
    border: 1px solid var(--brand-green); 
}

.contact-info-box h2 { 
    font-size: 2rem; 
    margin-bottom: 15px; 
    color: #111; 
}

.contact-info-box p { 
    font-size: 1.05rem; 
    color: #444; 
    margin-bottom: 25px; 
}

.info-block {
    margin-bottom: 20px;
}

.info-block strong {
    display: block;
    color: var(--brand-green);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-form { 
    background: var(--bg-main); 
    padding: 40px; 
    border-radius: 8px; 
    box-shadow: var(--shadow-md); 
    border: 1px solid var(--border-light); 
}

.form-group { 
    margin-bottom: 20px; 
}

.form-group label { 
    display: block; 
    margin-bottom: 8px; 
    font-weight: 600; 
    color: #111; 
    font-size: 0.95rem; 
}

.form-control { 
    width: 100%; 
    padding: 14px 15px; 
    border: 1px solid #ccc; 
    border-radius: 4px; 
    font-size: 1rem; 
    font-family: 'Poppins', sans-serif; 
    transition: border-color 0.3s;
}

.form-control:focus { 
    border-color: var(--brand-green); 
    outline: none; 
}

textarea.form-control { 
    resize: vertical; 
    min-height: 120px; 
}

/* Legal Pages Typography */
.legal-wrap { 
    max-width: 900px; 
    margin: 120px auto 80px; 
    padding: 0 24px; 
}

.legal-wrap h1 { 
    font-size: 2.5rem; 
    margin-bottom: 10px; 
    text-align: center; 
    color: #111; 
}

.legal-update {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 40px;
}

.legal-content h2 { 
    font-size: 1.5rem; 
    margin-top: 40px; 
    margin-bottom: 15px; 
    color: var(--brand-green); 
    text-transform: uppercase;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 10px;
}

.legal-content p { 
    font-size: 1.05rem; 
    color: #444; 
    margin-bottom: 20px; 
    line-height: 1.8; 
    text-align: left; 
}

.legal-content ul { 
    margin-bottom: 20px; 
    padding-left: 20px; 
}

.legal-content li { 
    font-size: 1.05rem; 
    color: #444; 
    margin-bottom: 10px; 
    text-align: left; 
    line-height: 1.6;
}

@media (max-width: 768px) { 
    .contact-wrap { grid-template-columns: 1fr; margin-top: 100px; } 
    .legal-wrap { margin-top: 100px; }
}