/* ===== GLOBAL BRAND COLORS ===== */
:root{
  --brand-red:#d11111;
  --brand-orange:#ff8c00;
  --brand-orange-dark:#ff5e00;
  --star-color:#ff8c00;
  --check-green:#28a745;
}
<style>
        /* CSS Variables for Exact Colors */
        :root {
            --primary-orange: #FF7A00;
            --dark-maroon: #410808;
            --text-black: #333333;
            --heading-red: #D11111;
            --white: #ffffff;
            --light-blue: #E3F2FD;
        }

        body {
            margin: 0;
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: var(--text-black);
        }

        /* Updated Deep Color Header Section */
    .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 6%;
        /* Deep Dark Maroon Background */
        background: #2E0505; 
        position: sticky;
        top: 0;
        z-index: 1000;
        /* Subtle deep shadow */
        box-shadow: 0 4px 15px rgba(0,0,0,0.4);
        border-bottom: 2px solid #5E1111;
    }

    /* Logo Styling */
    .logo { 
        font-size: 26px; 
        font-weight: 800; 
        color: #FFFFFF; /* Pure White text */
        letter-spacing: -0.5px;
    }
    
    .logo span { 
        color: #FF4D4D; /* Brighter red for deep background */
        text-transform: uppercase;
    }

    /* Navigation Links */
    .nav-links { display: none; }

    @media (min-width: 768px) {
        .nav-links { 
            display: flex; 
            gap: 25px; 
            color: #E0E0E0; /* Soft gray-white */
            font-size: 15px;
            font-weight: 500;
        }
        
        .nav-links a { 
            text-decoration: none; 
            color: inherit; 
            transition: 0.3s;
        }

        /* Hover pe Gold color effect */
        .nav-links a:hover { 
            color: #FFB400; 
        }
    }

    /* Call to Action Button */
    .cta-header {
        background: linear-gradient(135deg, #FF8C00 0%, #FF5E00 100%);
        color: white;
        padding: 10px 22px;
        border-radius: 4px; /* Slightly sharper for premium look */
        text-decoration: none;
        font-weight: bold;
        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 8px;
        box-shadow: 0 4px 10px rgba(255, 94, 0, 0.3);
        transition: transform 0.2s, box-shadow 0.2s;
    }

    .cta-header:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(255, 94, 0, 0.5);
    }

        /* 2. HERO SECTION (Screenshot 194 Style) */
        .hero {
            background: var(--dark-maroon);
            color: white;
            padding: 50px 8%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        @media (min-width: 1024px) {
            .hero {
                flex-direction: row;
                text-align: left;
                justify-content: space-between;
                gap: 40px;
            }
        }

        .hero-content { flex: 1.2; }

        .hero-content h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            line-height: 1.1;
            font-weight: bold;
        }

        .hero-content p { font-size: 1.1rem; margin-bottom: 25px; opacity: 0.9; }

        /* Two-Column Checkmarks Grid */
        .check-list {
            list-style: none;
            padding: 0;
            display: grid;
            grid-template-columns: 1fr 1fr; /* Do line mein set kiya */
            gap: 15px;
            margin: 25px 0;
        }

        .check-list li {
            display: flex;
            align-items: center;
            font-size: 1rem;
            font-weight: 500;
        }

        .check-list li::before {
            content: '✔';
            color: #4CAF50;
            margin-right: 10px;
            font-weight: bold;
        }

        .hero-image { flex: 0.8; text-align: right; }
        .hero-image img {
            max-width: 380px;
            width: 100%;
            filter: drop-shadow(0 10px 30px rgba(0,0,0,0.5));
        }

        .btn-large {
            background: var(--primary-orange);
            color: white;
            padding: 16px 35px;
            border-radius: 8px;
            font-size: 1.3rem;
            text-decoration: none;
            display: inline-block;
            margin: 20px 0;
            font-weight: bold;
            box-shadow: 0 4px 15px rgba(255, 122, 0, 0.3);
        }

        .rating-stars {
            margin-top: 10px;
            font-size: 1.1rem;
            color: #FFB400;
        }
    </style>
<style>
.flex-container{
    display:flex;
    align-items:center;
    gap:40px;
}

.text-column{
    flex:1;
}

.image-column{
    flex:1;
    text-align:center;
}

.image-column img{
    max-width:100%;
    height:auto;
}
    /* Section Main Style */
    .male-power-info {
        padding: 50px 10%;
        font-family: Arial, sans-serif;
        color: #333;
        background-color: #fff;
    }

    /* Red Header */
    .title-red {
        color: #D11111;
        font-size: 32px;
        font-weight: bold;
        text-align: center;
        margin-bottom: 40px;
    }

    .flex-container {
        display: flex;
        align-items: flex-start;
        gap: 30px;
    }

    /* Text on Left */
    .text-column {
        flex: 2;
        text-align: left;
        line-height: 1.6;
        font-size: 16px;
    }

    .text-column p {
        margin-bottom: 18px;
    }

    /* Image on Right */
    .image-column {
        flex: 1;
        text-align: center;
    }

    .image-column img {
        max-width: 100%;
        height: auto;
    }

    /* Orange Button */
    .cta-button-orange {
        background-color: #FF7A00;
        color: white;
        padding: 15px 30px;
        font-size: 18px;
        font-weight: bold;
        text-decoration: none;
        border-radius: 6px;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        margin-top: 20px;
        border: none;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .flex-container { flex-direction: column; }
        .image-column { order: -1; } /* Mobile par image pehle dikhegi */
    }
</style>
<style>
.review-avatar{
    width:60px;
    height:60px;
    border-radius:50%;
    object-fit:cover;
    display:block;
    margin-bottom:10px;
}
    .review-section {
        padding: 60px 5%;
        background-color: #ffffff;
        font-family: Arial, sans-serif;
        text-align: center;
    }

    /* Red Titles */
    .red-heading {
        color: #D11111;
        font-size: 2.2rem;
        font-weight: bold;
        margin-bottom: 10px;
    }

    .sub-heading {
        color: #666;
        margin-bottom: 40px;
    }

    /* Card Grid System */
    .grid-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        max-width: 1100px;
        margin: 0 auto 60px auto;
    }

    /* Review Cards */
    .review-card {
        background: white;
        border-radius: 15px;
        padding: 30px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        border: 1px solid #eee;
    }

    .profile-img {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 15px;
    }

    .stars {
        color: #FFB400;
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .review-text {
        font-size: 0.95rem;
        line-height: 1.6;
        color: #444;
        margin-bottom: 20px;
    }

    .reviewer-name {
        font-weight: bold;
        color: #333;
    }

    /* Trust Badges Section */
    .badge-card {
        background: white;
        border-radius: 12px;
        padding: 25px;
        border: 1px solid #eee;
        box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        text-align: center;
    }

    .badge-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
        display: block;
    }

    .badge-card h3 {
        margin: 10px 0;
        font-size: 1.1rem;
    }

    .badge-card p {
        font-size: 0.85rem;
        color: #666;
    }

    /* Bottom Orange Button */
    .orange-cta {
        background-color: #FF7A00;
        color: white;
        padding: 15px 40px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: bold;
        display: inline-block;
        margin-top: 20px;
    }
</style>
<style>
    .routine-section {
        padding: 50px 10%;
        font-family: Arial, sans-serif;
        background-color: #ffffff;
        color: #333;
    }

    /* Red Header */
    .title-red-center {
        color: #D11111;
        font-size: 2.2rem;
        font-weight: bold;
        text-align: center;
        margin-bottom: 40px;
    }

    /* List with Icons */
    .routine-list {
        list-style: none;
        padding: 0;
        max-width: 900px;
        margin: 0 auto;
    }

    .routine-item {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 20px;
        font-size: 1.05rem;
        line-height: 1.6;
    }

    .icon-circle {
        color: #333;
        font-size: 1.2rem;
        margin-top: 3px;
    }

    .bold-text {
        font-weight: bold;
    }

    /* Blue Fact Box */
    .fact-box-light {
        background-color: #E3F2FD;
        padding: 30px;
        border-radius: 10px;
        max-width: 900px;
        margin: 40px auto 0 auto;
        text-align: center;
        font-size: 1.1rem;
    }

    /* Why Choose Cards */
    .badge-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        margin-top: 50px;
    }

    .badge-card-white {
        background: white;
        border-radius: 15px;
        padding: 30px 20px;
        width: 220px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08); /* Soft shadow jaisa image mein hai */
        text-align: center;
        border: 1px solid #f0f0f0;
    }

    .badge-card-white img { width: 45px; margin-bottom: 15px; }
    .badge-card-white h3 { font-size: 1.1rem; margin-bottom: 10px; }
    .badge-card-white p { font-size: 0.9rem; color: #666; line-height: 1.4; }
</style>
<style>
        /* Exact color matches from the image */
        :root {
            --brand-red: #d32f2f;         /* The specific Red for the title */
            --brand-orange: #ff6d00;      /* The specific Orange for the button */
            --trust-blue-bg: #e3f2fd;    /* The light blue background for the note */
            --card-border: #f0f0f0;
            --text-main: #333333;
            --text-light: #555555;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #ffffff;
            margin: 0;
            padding: 40px 20px;
            color: var(--text-main);
        }

        .wrapper {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }

        /* Heading Style */
        .main-title {
            color: var(--brand-red);
            font-size: 28px;
            font-weight: bold;
            margin-bottom: 15px;
        }

        .sub-title {
            font-size: 14px;
            color: var(--text-light);
            margin-bottom: 40px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.5;
        }

        /* Ingredient Grid */
        .ingredient-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 30px;
        }

        .card {
            background: #ffffff;
            border: 1px solid var(--card-border);
            border-radius: 12px;
            padding: 30px 15px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.03);
            display: flex;
            flex-direction: column;
            justify-content: center;
            min-height: 150px;
        }

        .card h3 {
            font-size: 18px;
            margin-top: 0;
            margin-bottom: 10px;
            color: #000000;
        }

        .card p {
            font-size: 14px;
            color: var(--text-light);
            margin: 0;
            line-height: 1.4;
        }

        /* Trust Note Style */
        .trust-box {
            background-color: var(--trust-blue-bg);
            border-radius: 6px;
            padding: 20px;
            margin: 30px 0;
            font-size: 14px;
            line-height: 1.6;
        }

        .trust-box strong {
            color: #000;
        }

        /* Button Style */
        .order-btn {
            background-color: var(--brand-orange);
            color: #ffffff;
            padding: 15px 35px;
            font-size: 18px;
            font-weight: bold;
            text-decoration: none;
            border-radius: 6px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            border: none;
            cursor: pointer;
            transition: background 0.2s;
        }

        .order-btn:hover {
            background-color: #e65100;
        }

        /* Mobile Adjustments */
        @media (max-width: 768px) {
            .ingredient-grid {
                grid-template-columns: 1fr;
            }
            .main-title {
                font-size: 22px;
            }
            .order-btn {
                width: 100%;
                justify-content: center;
            }
        }
    </style>
<style>
        :root {
            --brand-red: #cc0000;
            --brand-orange: #ff6d00;
            --dark-bg: #2b0000;
            --text-dark: #333;
            --light-gray: #f4f4f4;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; color: var(--text-dark); line-height: 1.6; }
        .container { max-width: 1100px; margin: 0 auto; padding: 40px 20px; text-align: center; }
        
        /* HERO SECTION */
        .hero { background: linear-gradient(to bottom, #4a0000, #2b0000); color: white; padding: 60px 20px; }
        .timer-container { display: flex; justify-content: center; gap: 15px; margin: 25px 0; }
        .timer-box { background: rgba(255,255,255,0.1); padding: 15px; border-radius: 8px; min-width: 80px; }
        .timer-num { font-size: 32px; font-weight: bold; display: block; }
        .cta-button { 
            background: var(--brand-orange); color: white; padding: 18px 35px; 
            font-size: 20px; font-weight: bold; text-decoration: none; border-radius: 5px; 
            display: inline-block; transition: 0.3s; margin: 20px 0;
        }

        /* INGREDIENTS GRID */
        .grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-top: 30px; }
        .card { background: white; padding: 25px; border-radius: 12px; border: 1px solid #eee; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
        .card h3 { color: var(--text-dark); margin-bottom: 10px; }

        /* PROS & CONS TABLE */
        .comparison-table { width: 100%; border-collapse: collapse; margin-top: 30px; text-align: left; }
        .comparison-table th { background: #6c757d; color: white; padding: 15px; }
        .comparison-table td { border: 1px solid #ddd; padding: 12px; font-size: 14px; }

      

        /* FOOTER */
        .footer { background: #003344; color: white; padding: 40px 20px; font-size: 12px; text-align: left; }
        .footer a { color: white; margin: 0 10px; text-decoration: none; }
    </style>
<style>

.pricing-section{
  background:#f3f3f3;
  padding:60px 20px;
  font-family: Arial, sans-serif;
  text-align:center;
}

/* HEADING RED */
.pricing-title{
  color:#e60000;
  font-size:32px;
  font-weight:700;
  margin-bottom:10px;
}

.pricing-sub{
  color:#333;
  font-size:15px;
  margin-bottom:40px;
}

/* GRID */
.pricing-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:25px;
  max-width:1100px;
  margin:auto;
}

/* CARD */
.price-card{
  background:#fff;
  border-radius:12px;
  padding:25px;
  box-shadow:0 5px 15px rgba(0,0,0,0.08);
  transition:.3s;
}

.price-card:hover{
  transform:translateY(-6px);
}

/* TOP LABEL */
.plan{
  background:#d9ead7;
  padding:10px;
  border-radius:8px;
  font-weight:700;
  margin-bottom:20px;
}

.popular{
  background:#ecd6b3;
}

/* IMAGE */
.price-card img{
  width:180px;
  margin:15px auto;
}

/* PRICE */
.old-price{
  text-decoration:line-through;
  color:#999;
}

.new-price{
  font-size:28px;
  font-weight:700;
  color:#0a5c55;
}

.save{
  margin:10px 0;
  font-size:14px;
}

/* ORANGE BUTTON */
.cart-btn{
  background:#ff7a00;
  color:#fff;
  padding:14px 25px;
  border-radius:8px;
  text-decoration:none;
  font-weight:700;
  display:inline-block;
  margin:15px 0;
  transition:.3s;
}

.cart-btn:hover{
  background:#e86800;
}

/* SMALL TEXT */
.small{
  font-size:13px;
  color:#333;
}
/* ===== PRICING SECTION FIX ===== */

.pricing-section{
    width:100%;
    padding:60px 20px;
    background:#f5f5f5;
    text-align:center;
}

/* CENTER CONTENT */
.pricing-grid{
    max-width:1200px;
    margin:0 auto;              /* MAIN CENTER FIX */
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

/* CARD DESIGN */
.price-card{
    background:#fff;
    padding:25px;
    border-radius:12px;
    box-shadow:0 4px 15px rgba(0,0,0,0.08);
}

/* TITLE RED */
.pricing-title{
    color:#e60000;
    font-size:32px;
    font-weight:700;
    margin-bottom:10px;
}

/* BUTTON ORANGE */
.cart-btn{
    background:#ff7a00;
    color:#fff;
    padding:14px 24px;
    border-radius:8px;
    text-decoration:none;
    font-weight:700;
    display:inline-block;
    margin-top:15px;
}

.cart-btn:hover{
    background:#e56700;
}
</style>

<style>
    .guarantee-section { 
        background: radial-gradient(circle, #5e1111 0%, #2e0505 100%); 
        color: white; 
        padding: 100px 5%; /* Padding badha di hai taaki section 'sate' nahi */
        text-align: center;
        margin-top: 50px; /* Pricing section se gap ke liye */
        clear: both;
    }
    
    .guarantee-container { 
        max-width: 1000px; 
        margin: 0 auto; 
    }

    .badge-img { 
        width: 250px; 
        margin-bottom: 30px; 
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .guarantee-title { 
        font-size: 2.2rem; 
        font-weight: bold; 
        margin-bottom: 25px; 
        line-height: 1.2;
    }

    .guarantee-text { 
        font-size: 1.15rem; 
        opacity: 0.95; 
        margin-bottom: 20px; 
        line-height: 1.6;
        max-width: 850px;
        margin-left: auto;
        margin-right: auto;
    }

    .btn-orange-final {
        background: linear-gradient(to bottom, #ff8c00, #ff5e00);
        color: white;
        padding: 20px 50px;
        font-size: 20px;
        font-weight: bold;
        text-decoration: none;
        border-radius: 8px;
        display: inline-block;
        border: none;
        margin-top: 30px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    }
</style>
<style>
    /* FAQ SECTION STYLING */
    .faq-section {
        padding: 60px 5%;
        max-width: 800px;
        margin: 0 auto;
        font-family: Arial, sans-serif;
    }

    .section-title {
        text-align: center;
        color: #D11111; /* Aapki theme ka red color */
        margin-bottom: 40px;
        font-size: 2rem;
    }

    .faq-item {
        border-bottom: 1px solid #ddd;
        padding: 20px 0;
        text-align: left;
    }

    .faq-question {
        font-weight: bold;
        font-size: 1.1rem;
        color: #333;
        margin-bottom: 10px;
        display: block;
    }

    .faq-answer {
        color: #555;
        line-height: 1.6;
        margin: 0;
    }
</style>
<style>
    /* 2. Final Product Section (Screenshot 147) */
    .final-cta-section {
        background: #ffffff;
        padding: 60px 5%;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 40px;
    }
    .product-box img { max-width: 350px; width: 100%; }
    .cta-text-side { max-width: 600px; text-align: left; }
    .cta-text-side h2 { color: #d11111; font-size: 28px; margin-bottom: 15px; }
    .rating-stars { color: #ff8c00; font-size: 20px; margin: 15px 0; }
    
    .orange-button {
        background: linear-gradient(to bottom, #ff8c00, #ff5e00);
        color: white;
        padding: 18px 45px;
        font-size: 22px;
        font-weight: bold;
        text-decoration: none;
        border-radius: 50px;
        display: inline-block;
        box-shadow: 0 4px 15px rgba(255, 94, 0, 0.4);
    }

    .checkmarks-grid {
        display: flex;
        gap: 20px;
        margin-top: 25px;
        font-size: 14px;
        font-weight: bold;
        color: #2d2d2d;
    }
    .check-item { display: flex; align-items: center; gap: 5px; }
    .check-icon { color: #28a745; }

    @media (max-width: 768px) {
        .cta-text-side { text-align: center; }
        .checkmarks-grid { justify-content: center; flex-wrap: wrap; }
    }
</style>
<style>
    /* CSS for Pop-up */
    .popup-overlay {
        position: fixed;
        top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(0,0,0,0.8);
        display: none; /* Starting mein chhupa rahega */
        justify-content: center;
        align-items: center;
        z-index: 9999;
        font-family: Arial, sans-serif;
    }

    .popup-box {
        background: white;
        width: 90%;
        max-width: 800px;
        padding: 30px;
        border-radius: 15px;
        position: relative;
        animation: fadeIn 0.4s ease-out;
    }

    @keyframes fadeIn {
        from { transform: scale(0.8); opacity: 0; }
        to { transform: scale(1); opacity: 1; }
    }

    .close-btn {
        position: absolute;
        top: 10px; right: 15px;
        font-size: 30px;
        background: none; border: none; cursor: pointer; color: #888;
    }

    .popup-content {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 20px;
    }

    .popup-image { flex: 1; min-width: 250px; text-align: center; }
    .popup-image img { max-width: 100%; height: auto; }

    .popup-info { flex: 1.5; min-width: 300px; }

    .popup-info h2 { font-size: 22px; color: #1a1a1a; margin-bottom: 15px; line-height: 1.2; }
    .highlight { color: #D11111; }

    .benefits-list { list-style: none; padding: 0; margin-bottom: 20px; }
    .benefits-list li { margin-bottom: 8px; font-size: 15px; display: flex; align-items: center; }
    .check { color: #28a745; font-weight: bold; margin-right: 10px; }

    .offer-box { background: #f9f9f9; padding: 10px; border-radius: 5px; margin-bottom: 20px; border-left: 4px solid #ff8c00; }
    .offer-tag { color: #ff5e00; font-weight: bold; margin: 0; }
    .price-text { margin: 5px 0 0; font-size: 15px; }

    .popup-order-btn {
        background: linear-gradient(to bottom, #ff8c00, #ff5e00);
        color: white;
        display: block;
        text-align: center;
        padding: 15px;
        text-decoration: none;
        font-weight: bold;
        font-size: 18px;
        border-radius: 5px;
        box-shadow: 0 4px 10px rgba(255, 94, 0, 0.3);
    }

    .popup-rating { margin-top: 15px; text-align: center; font-size: 14px; color: #444; }

    @media (max-width: 600px) {
        .popup-content { text-align: center; }
        .benefits-list li { justify-content: center; }
    }
</style>
<style>
    /* CSS for Pop-up */
    .popup-overlay {
        position: fixed;
        top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(0,0,0,0.8);
        display: none; /* Starting mein chhupa rahega */
        justify-content: center;
        align-items: center;
        z-index: 9999;
        font-family: Arial, sans-serif;
    }

    .popup-box {
        background: white;
        width: 90%;
        max-width: 800px;
        padding: 30px;
        border-radius: 15px;
        position: relative;
        animation: fadeIn 0.4s ease-out;
    }

    @keyframes fadeIn {
        from { transform: scale(0.8); opacity: 0; }
        to { transform: scale(1); opacity: 1; }
    }

    .close-btn {
        position: absolute;
        top: 10px; right: 15px;
        font-size: 30px;
        background: none; border: none; cursor: pointer; color: #888;
    }

    .popup-content {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 20px;
    }

    .popup-image { flex: 1; min-width: 250px; text-align: center; }
    .popup-image img { max-width: 100%; height: auto; }

    .popup-info { flex: 1.5; min-width: 300px; }

    .popup-info h2 { font-size: 22px; color: #1a1a1a; margin-bottom: 15px; line-height: 1.2; }
    .highlight { color: #D11111; }

    .benefits-list { list-style: none; padding: 0; margin-bottom: 20px; }
    .benefits-list li { margin-bottom: 8px; font-size: 15px; display: flex; align-items: center; }
    .check { color: #28a745; font-weight: bold; margin-right: 10px; }

    .offer-box { background: #f9f9f9; padding: 10px; border-radius: 5px; margin-bottom: 20px; border-left: 4px solid #ff8c00; }
    .offer-tag { color: #ff5e00; font-weight: bold; margin: 0; }
    .price-text { margin: 5px 0 0; font-size: 15px; }

    .popup-order-btn {
        background: linear-gradient(to bottom, #ff8c00, #ff5e00);
        color: white;
        display: block;
        text-align: center;
        padding: 15px;
        text-decoration: none;
        font-weight: bold;
        font-size: 18px;
        border-radius: 5px;
        box-shadow: 0 4px 10px rgba(255, 94, 0, 0.3);
    }

    .popup-rating { margin-top: 15px; text-align: center; font-size: 14px; color: #444; }

    @media (max-width: 600px) {
        .popup-content { text-align: center; }
        .benefits-list li { justify-content: center; }
    }
</style>
<style>

/* ===== RESET ===== */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: Arial, sans-serif;
}

/* ===== SECTION ===== */
.product-section{
  background:#f6f6f6;
  padding:60px 20px;
  display:flex;
  justify-content:center;
}

/* ===== CONTAINER ===== */
.product-container{
  max-width:1100px;
  width:100%;
  background:#ffffff;
  border-radius:12px;
  padding:40px;
  display:flex;
  align-items:center;
  gap:40px;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

/* ===== IMAGE ===== */
.product-img img{
  width:320px;
  max-width:100%;
}

/* ===== CONTENT ===== */
.product-content h2{
  font-size:32px;
  color:#222;
  margin-bottom:15px;
}

.product-content p{
  font-size:16px;
  color:#555;
  line-height:1.6;
  margin-bottom:20px;
}

/* ===== BUTTON ===== */
.buy-btn{
  display:inline-block;
  background:#ff5a6e;
  color:#fff;
  padding:14px 28px;
  border-radius:6px;
  text-decoration:none;
  font-weight:bold;
  transition:0.3s;
}

.buy-btn:hover{
  background:#e0485a;
}

/* ===== MOBILE ===== */
@media(max-width:768px){
  .product-container{
    flex-direction:column;
    text-align:center;
  }
}

</style>
/* ===== POPUP OVERLAY ===== */
.popup-overlay{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);

    display: none;
    align-items: center;
    justify-content: center;

    z-index: 9999;
    padding: 20px;
    box-sizing: border-box;
}

/* ===== POPUP BOX ===== */
.popup-box{
    background:#fff;
    width:100%;
    max-width:800px;
    border-radius:15px;
    padding:30px;
    position:relative;

    max-height:90vh;
    overflow-y:auto;

    animation: popupFade .4s ease;
}

/* animation */
@keyframes popupFade{
    from{opacity:0; transform:scale(.9);}
    to{opacity:1; transform:scale(1);}
}

/* CLOSE BUTTON */
.close-btn{
    position:absolute;
    right:15px;
    top:10px;
    border:none;
    background:none;
    font-size:30px;
    cursor:pointer;
}

/* CONTENT LAYOUT */
.popup-content{
    display:flex;
    flex-wrap:wrap;
    gap:25px;
    align-items:center;
}

/* IMAGE */
.popup-image{
    flex:1;
    text-align:center;
    min-width:250px;
}

.popup-image img{
    width:100%;
    max-width:300px;
    height:auto;
}

/* TEXT SIDE */
.popup-info{
    flex:1.5;
    min-width:280px;
}

.popup-info h2{
    font-size:22px;
    line-height:1.3;
}

/* HIGHLIGHT TEXT */
.highlight{
    color:var(--brand-red);
}

/* BENEFITS */
.benefits-list{
    list-style:none;
    padding:0;
    margin:15px 0;
}

.benefits-list li{
    margin-bottom:8px;
    display:flex;
    align-items:center;
}

.check{
    color:#28a745;
    margin-right:10px;
}

/* OFFER BOX */
.offer-box{
    background:#f5f5f5;
    border-left:4px solid var(--brand-orange);
    padding:12px;
    border-radius:6px;
    margin-bottom:20px;
}

/* BUTTON */
.popup-order-btn{
    display:block;
    text-align:center;
    padding:15px;
    font-weight:bold;
    text-decoration:none;
    border-radius:6px;
    color:#fff;

    background:linear-gradient(
        to bottom,
        var(--brand-orange),
        #ff5e00
    );
}

/* RATING */
.popup-rating{
    text-align:center;
    margin-top:15px;
    font-size:14px;
}

/* MOBILE FIX */
@media(max-width:600px){
    .popup-content{
        text-align:center;
    }

    .benefits-list li{
        justify-content:center;
    }
}.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.8);

    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    font-family: Arial, sans-serif;
}

.popup-box {
    background: #ffffff;
    width: 90%;
    max-width: 800px;
    padding: 30px;
    border-radius: 15px;
    position: relative;
    animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 30px;
    background: none;
    border: none;
    cursor: pointer;
    color: #888888;
}

.popup-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.popup-image {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.popup-image img {
    max-width: 100%;
    height: auto;
}

.popup-info {
    flex: 1.5;
    min-width: 300px;
}

.popup-info h2 {
    font-size: 22px;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.2;
}

.highlight {
    color: #D11111;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.benefits-list li {
    margin-bottom: 8px;
    font-size: 15px;
    display: flex;
    align-items: center;
}

.check {
    color: #28a745;
    font-weight: bold;
    margin-right: 10px;
}

.offer-box {
    background: #f9f9f9;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
    border-left: 4px solid #ff8c00;
}

.offer-tag {
    color: #ff5e00;
    font-weight: bold;
    margin: 0;
}

.price-text {
    margin: 5px 0 0;
    font-size: 15px;
}

.popup-order-btn {
    background: linear-gradient(to bottom, #ff8c00, #ff5e00);
    color: #ffffff;
    display: block;
    text-align: center;
    padding: 15px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(255, 94, 0, 0.3);
}

.popup-rating {
    margin-top: 15px;
    text-align: center;
    font-size: 14px;
    color: #444444;
}

@media (max-width: 600px) {
    .popup-content {
        text-align: center;
    }

    .benefits-list li {
        justify-content: center;
    }
}.guarantee-section{
padding:60px 20px;
background:#f7f7f7;
}

.guarantee-container{
display:flex;
align-items:center;
justify-content:center;
gap:60px;
max-width:1100px;
margin:auto;
}

.guarantee-img img{
width:260px;
max-width:100%;
}

.guarantee-content{
max-width:600px;
}

.guarantee-content h2{
color:#7b2c3a;
margin-bottom:20px;
font-size:34px;
}

.guarantee-content p{
font-size:18px;
line-height:1.7;
margin-bottom:20px;
}@media(max-width:768px){
.guarantee-container{
flex-direction:column;
text-align:center;
}

.guarantee-img img{
width:200px;
}
}.header{
    background:#ffffff;
    box-shadow:0 2px 10px rgba(0,0,0,0.08);
}

.logo{
    color:#111;
}

.logo span{
    color:#ff6a00; /* accent color */
}

.nav-links a{
    color:#222;
}

.nav-links a:hover{
    color:#ff6a00;
}

.cta-header{
    background:#ff6a00;
    color:#fff;
}.header{
    position:sticky;
    top:0;
    z-index:999;
}.nav-links a{
    font-weight:700;   /* bold text */
}.faq-section{
  max-width:1000px;
  margin:60px auto;
  padding:20px;
}

.section-title{
  text-align:center;
  font-size:32px;
  font-weight:800;
  margin-bottom:35px;
}

.faq-item{
  background:#fff;
  border-radius:12px;
  padding:20px 25px;
  margin-bottom:18px;
  box-shadow:0 4px 12px rgba(0,0,0,0.08);
}

.faq-question{
  font-size:19px;
  font-weight:700;
  margin-bottom:8px;
}

.faq-answer{
  color:#555;
  line-height:1.7;
}/* ===== RESET ===== */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: Arial, sans-serif;
}

body{
    background:#f4f4f4;
    color:#222;
}

/* ===== CONTAINER ===== */
.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ===== NAVBAR ===== */
.navbar{
    background:#1f7a70;
    padding:15px 0;
}

.nav-flex{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    color:#ffe600;
    font-weight:700;
    font-size:22px;
}

nav a{
    color:#ffe600;
    text-decoration:none;
    margin:0 15px;
    font-weight:600;
}

.order-btn{
    background:#ffe600;
    color:#000;
    padding:10px 18px;
    border-radius:25px;
    text-decoration:none;
    font-weight:bold;
}

/* ===== HERO ===== */
.hero{
    padding:60px 0;
    background:#efefef;
}

.hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:40px;
}

/* IMAGE */
.hero-image img{
    width:100%;
    max-width:420px;
    display:block;
    margin:auto;
}

/* CONTENT */
.hero-content h1{
    font-size:32px;
    font-weight:700;
    margin-bottom:20px;
}

.sub-heading{
    color:#e60000;
    margin-bottom:15px;
}

.hero-content p{
    line-height:1.7;
    margin-bottom:15px;
}

/* BENEFITS */
.benefits{
    list-style:none;
    margin:20px 0;
}

.benefits li{
    margin-bottom:8px;
    font-size:16px;
}

/* PRICE */
.price{
    color:#1c4d1a;
    margin:20px 0;
    font-size:26px;
}

/* CTA BUTTON */
.cta-btn{
    background:#ffe600;
    padding:15px 28px;
    border-radius:40px;
    text-decoration:none;
    font-weight:bold;
    color:#000;
    display:inline-block;
    transition:0.3s;
}

.cta-btn:hover{
    background:#ffd000;
    transform:scale(1.05);
}

/* ===== MOBILE ===== */
@media(max-width:900px){

.hero-grid{
    grid-template-columns:1fr;
    text-align:center;
}

nav{
    display:none;
}

}/* TOP HEADING BLACK FIX */
.hero-content h1{
    color:#000 !important;
}.sub-heading{
    color:#e60000 !important;
}/* ===== TEXT VISIBILITY FIX (MAKE ALL CONTENT BLACK) ===== */

.hero-content{
    color:#000 !important;
}

.hero-content h1,
.hero-content h2,
.hero-content h3,
.hero-content p,
.hero-content li,
.hero-content span{
    color:#000 !important;
}

/* benefits list */
.benefits li{
    color:#000 !important;
}

/* price color (dark green visible) */
.price{
    color:#1b4d1b !important;
}/* ===== ABOUT SECTION ===== */

.about-section{
    background:#efefef;
    padding:60px 0;
}

/* TOP GREEN TITLE BAR */
.about-title{
    background:#2b7d73;
    text-align:center;
    padding:18px;
}

.about-title h2{
    color:#fff;
    font-size:28px;
    font-weight:700;
}

/* GRID LAYOUT */
.about-grid{
    width:90%;
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:50px;
    align-items:center;
    margin-top:40px;
}

/* LEFT IMAGES */
.about-images{
    text-align:center;
}

.main-img{
    width:80%;
    max-width:350px;
    margin-bottom:30px;
}

.doctor-img{
    width:80%;
    max-width:320px;
    border-radius:18px;
}

/* RIGHT CONTENT */
.about-content p{
    color:#222;
    font-size:17px;
    line-height:1.8;
    margin-bottom:20px;
}

/* MOBILE RESPONSIVE */
@media(max-width:900px){

.about-grid{
    grid-template-columns:1fr;
    text-align:center;
}

.main-img,
.doctor-img{
    width:90%;
}

}/* ===== SCIENCE SECTION ===== */

.science-section{
    background:#efefef;
    padding-bottom:60px;
}

/* TOP GREEN BAR */
.science-title{
    background:#2b7d73;
    text-align:center;
    padding:18px;
}

.science-title h2{
    color:#fff;
    font-size:26px;
    font-weight:700;
}

/* CONTENT AREA */
.science-container{
    width:75%;
    max-width:900px;
    margin:40px auto 0;
}

/* PARAGRAPH STYLE */
.science-container p{
    color:#222;
    font-size:17px;
    line-height:1.9;
    margin-bottom:22px;
    text-align:left;
}

/* MOBILE RESPONSIVE */
@media(max-width:900px){

.science-container{
    width:90%;
    text-align:center;
}

}<style>
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, Helvetica, sans-serif;
}

body{
  background:#ffffff;
}

/* Header */
.ingredients-header{
  background:#1f7f73;
  color:#fff;
  text-align:center;
  padding:18px 10px;
  font-size:20px;
  font-weight:600;
}

/* Main section */
.ingredients-section{
  max-width:900px;
  margin:40px auto;
  padding:0 20px;
}

/* Each item */
.ingredient-item{
  display:flex;
  gap:15px;
  margin-bottom:30px;
}

/* Number circle */
.circle{
  width:42px;
  height:42px;
  background:#214d1c;
  color:#fff;
  font-weight:bold;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}

/* Content */
.content h3{
  color:#214d1c;
  font-size:17px;
  margin-bottom:6px;
}

.content p{
  color:#333;
  font-size:14.5px;
  line-height:1.6;
}

/* Mobile responsive */
@media(max-width:600px){
  .ingredients-header{
    font-size:17px;
  }
}
</style>/* ===== MOBILE RESPONSIVE FIX ===== */

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-size: 16px;
  font-family: Arial, sans-serif;
}

/* Container Fix */
.container, 
.wrapper, 
.section {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 15px;
}

/* Images Responsive */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Buttons & Links Mobile Friendly */
button, 
a.btn, 
.cta-button {
  display: inline-block;
  padding: 14px 20px;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  border-radius: 6px;
}

/* Make tap targets spaced */
a {
  margin: 6px 0;
}

/* Headings scale */
h1 { font-size: 28px; }
h2 { font-size: 24px; }
h3 { font-size: 20px; }

/* ===== MOBILE BREAKPOINT ===== */
@media (max-width: 768px) {

  body {
    font-size: 16px;
  }

  h1 { font-size: 22px; }
  h2 { font-size: 20px; }
  h3 { font-size: 18px; }

  .row,
  .flex,
  .columns {
    flex-direction: column !important;
    display: block !important;
  }

  .two-column,
  .col-6,
  .col-4,
  .col-3 {
    width: 100% !important;
  }

  button, 
  a.btn,
  .cta-button {
    width: 100%;
  }

}width: 1200px;
width: 1000px;
width: 900px;
max-width: 1200px;
width: 100%;
<style>
/* ===== Header Brand ===== */
.navbar-brand{
    font-size:26px;
    font-weight:bold;
}

/* ===== Order Button ===== */
.order-btn{
    background:#dc3545;
    color:#fff;
    padding:8px 18px;
    border-radius:5px;
    text-decoration:none;
    font-weight:600;
}

.order-btn:hover{
    background:#b02a37;
    color:#fff;
}

/* ===== HEADER SPACE FIX ===== */
body{
    padding-top:85px;   /* black header ki height */
}
</style>