/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #1a56db; /* Blue for headings */
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #1a56db; /* Blue for section headings */
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Text Highlight */
.highlight {
    color: #e53e3e; /* Red for text highlights */
    font-weight: 600;
}

.orange-highlight {
    color: #ed8936; /* Orange for secondary highlights */
    font-weight: 600;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    margin: 10px 5px;
}

.btn-primary {
    background-color: #f6e05e; /* Yellow for CTA buttons */
    color: #2d3748;
    border: 2px solid #f6e05e;
}

.btn-primary:hover {
    background-color: #ecc94b;
    border-color: #ecc94b;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: white;
    color: #2d3748;
    border: 2px solid #1a56db; /* Blue border */
}

.btn-secondary:hover {
    background-color: #ebf8ff;
    border-color: #1a56db;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: #2d3748;
    border: 2px solid #f6e05e; /* Yellow border */
}

.btn-outline:hover {
    background-color: #f6e05e;
    color: #2d3748;
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #1a56db; /* Blue for logo */
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-logo img {
    height: 40px;
    margin-right: 1px;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-link {
    margin: 0 15px;
    text-decoration: none;
    color: #2d3748;
    font-weight: 500;
    font-size: larger;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #1a56db; /* Blue on hover */
}

.nav-btn {
    background-color: #f6e05e; /* Yellow for nav CTA */
    color: #2d3748;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.nav-btn:hover {
    background-color: #ecc94b;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #2d3748;
    margin: 3px 0;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #ebf8ff 0%, #f8f9fa 100%);
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.hero-text {
    flex: 1;
    min-width: 300px;
    padding: 0 20px;
}

.hero-text h1 {
    font-size: 3.5rem;
    color: #1a56db; /* Blue for main heading */
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.benefits-list {
    margin: 20px 0;
}

.benefits-list li {
    margin-bottom: 10px;
    list-style-type: none;
}

.hero-btns {
    margin-top: 30px;
}

/* Pricing Section Styles */
.pricing-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.pricing-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 300px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.popular {
    border: 2px solid #4a90e2;
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #4a90e2;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.package-type {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.bottle-count {
    font-size: 1.5rem;
    font-weight: bold;
    color: #4a90e2;
    margin-bottom: 5px;
}

.supply-duration {
    color: #666;
    margin-bottom: 20px;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin: 15px 0;
}

.price-per-bottle {
    color: #666;
    margin-bottom: 20px;
}

.bonuses {
    background: #f0f7ff;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
}

.bonuses p {
    color: #4a90e2;
    font-weight: bold;
    margin: 5px 0;
}

.pricing-btn {
    display: block;
    background: #4a90e2;
    color: white;
    padding: 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: background 0.3s;
}

.pricing-btn:hover {
    background: #3a7bc8;
}

.pricing-btn.primary {
    background: #ff6b6b;
}

.pricing-btn.primary:hover {
    background: #e55c5c;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-weight: 600;
}

.badge i {
    color: #4a90e2;
    font-size: 1.2rem;
}

/* Product Image Styles */
.product-image {
    margin: 20px 0;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.pricing-card:hover .product-image img {
    transform: scale(1.05);
}

/* Adjust spacing for pricing cards with images */
.pricing-card .price {
    margin: 10px 0;
}
/* Responsive Design for Pricing */
@media (max-width: 992px) {
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
}

/* Guarantee Section Styles */
.guarantee-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-top: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
}

.guarantee-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-badge {
    margin-bottom: 30px;
}

.guarantee-badge h3 {
    font-size: 1.5rem;
    color: #4a90e2;
    margin-bottom: 10px;
    font-weight: 600;
}

.guarantee-badge h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
}

.guarantee-text {
    margin-bottom: 30px;
    line-height: 1.8;
}

.guarantee-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #555;
}

.manufacturer-note {
    font-style: italic;
    color: #666 !important;
    font-size: 1rem !important;
    margin-top: 25px !important;
}

.guarantee-image {
    margin-top: 0px;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 0px;
}

.guarantee-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Guarantee Section Styles */
.guarantee-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-top: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
}

.guarantee-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.guarantee-badge {
    margin-bottom: 0px;
}

.guarantee-badge h3 {
    font-size: 1.5rem;
    color: #4a90e2;
    margin-bottom: 10px;
    font-weight: 600;
}

.guarantee-badge h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
}

.guarantee-columns {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.guarantee-image-column {
    flex: 0 0 30%;
    display: flex;
    justify-content: center;
}

.guarantee-text-column {
    flex: 1;
    text-align: left;
}


.guarantee-text {
    line-height: 1.8;
}

.guarantee-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #555;
}

.manufacturer-note {
    font-style: italic;
    color: #666 !important;
    font-size: 1rem !important;
    margin-top: 25px !important;
}

/* Guarantee Image Styles */
.guarantee-image1 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px 0;
    width: 100%;
}

.guarantee-image1 img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive sizing for different screen sizes */
@media (min-width: 1200px) {
    .guarantee-image1 img {
        max-width: 693px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .guarantee-image1 img {
        max-width: 450px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .guarantee-image1 img {
        max-width: 400px;
    }
}

@media (max-width: 767px) {
    .guarantee-image1 img {
        max-width: 320px;
    }
}

@media (max-width: 480px) {
    .guarantee-image img {
        max-width: 280px;
    }
}

/* Animation for the guarantee image */
.guarantee-image1 img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guarantee-image1 img:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Responsive Design for Guarantee Section */
@media (max-width: 992px) {
    .guarantee-columns {
        flex-direction: column;
        gap: 30px;
    }
    
    .guarantee-text-column {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .guarantee-badge h3 {
        font-size: 1.3rem;
    }
    
    .guarantee-badge h2 {
        font-size: 1.8rem;
    }
    
    .guarantee-text p {
        font-size: 1rem;
    }
    
    .guarantee-image {
        width: 200px;
        height: 200px;
        padding: 20px;
    }
}

/* Responsive Design for Guarantee Section */
@media (max-width: 768px) {
    .guarantee-badge h3 {
        font-size: 1.3rem;
    }
    
    .guarantee-badge h2 {
        font-size: 1.8rem;
    }
    
    .guarantee-text p {
        font-size: 1rem;
    }
    
    .guarantee-image {
        width: 150px;
        height: 150px;
    }
}

/* Intro Section */
.intro {
    padding: 80px 0;
    background-color: white;
}

.intro h2 {
    color: #1a56db; /* Blue for section heading */
    margin-bottom: 30px;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.about h2 {
    color: #1a56db; /* Blue for section heading */
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.about-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.about-text {
    flex: 1;
    min-width: 300px;
    padding: 0 20px;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background-color: white;
}

.how-it-works h2 {
    color: #1a56db; /* Blue for section heading */
}

.process {
    max-width: 900px;
    margin: 0 auto;
}

.process ul {
    margin: 20px 0;
    padding-left: 20px;
}

.process li {
    margin-bottom: 15px;
}

/* Ingredients Section Styles with Pointer Format */
.ingredients {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.ingredients h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

.ingredient-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 50px;
}

.ingredient-item {
    display: flex;
    gap: 40px;
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.ingredient-image {
    flex: 0 0 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ingredient-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.ingredient-details {
    flex: 1;
}

.ingredient-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4a90e2 0%, #3a7bc8 100%);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.ingredient-details h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.benefit-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-points li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: #555;
    line-height: 1.5;
}

.benefit-points li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #4a90e2;
    font-weight: bold;
    font-size: 1.1rem;
}

.ingredient-conclusion {
    text-align: center;
    font-style: italic;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Responsive Design for Ingredients Section */
@media (max-width: 992px) {
    .ingredient-item {
        flex-direction: column;
        gap: 25px;
    }
    
    .ingredient-image {
        flex: 0 0 auto;
    }
}

@media (max-width: 768px) {
    .ingredients {
        padding: 60px 0;
    }
    
    .ingredient-item {
        padding: 20px;
    }
    
    .ingredient-details h3 {
        font-size: 1.3rem;
    }
    
    .section-intro,
    .ingredient-conclusion {
        font-size: 1rem;
    }
    
    .benefit-points li {
        font-size: 0.95rem;
    }
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background-color: white;
}

.benefits h2 {
    color: #1a56db; /* Blue for section heading */
}

.benefits-list {
    max-width: 800px;
    margin: 0 auto;
}

.benefits-list ul {
    padding-left: 20px;
}

.benefits-list li {
    margin-bottom: 15px;
}

.benefits-conclusion {
    text-align: center;
    max-width: 800px;
    margin: 30px auto 0;
    font-size: 1.1rem;
}

/* Bonuses Section Styles with Transparent Background Images */
.bonuses-section {
    padding: 80px 0;
    background-color: #fff;
}

.bonuses-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.bonuses-section .section-header h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
}

.bonuses-content {
    max-width: 1000px;
    margin: 0 auto;
}

.bonuses-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.bonus-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 30px;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #dee2e6;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.bonus-image {
    width: 220px;
    height: 220px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Removed background and padding */
}

.bonus-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    /* Removed border-radius */
}

.bonus-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px dashed #4a90e2;
    width: 100%;
}

.bonus-header h3 {
    font-size: 1.3rem;
    color: #4a90e2;
    margin-bottom: 10px;
    font-weight: 700;
}

.bonus-header h4 {
    font-size: 1.7rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.free-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b 0%, #e55c5c 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(255, 107, 107, 0.3);
}

.bonus-description p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    text-align: center;
}

.shipping-notice {
    background: linear-gradient(135deg, #4a90e2 0%, #3a7bc8 100%);
    color: white;
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
}

.shipping-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.shipping-notice h3 {
    font-size: 1.7rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.customer-note {
    font-style: italic;
    opacity: 0.9;
    margin-bottom: 0;
    font-size: 1.1rem;
}

/* Responsive Design for Bonuses Section */
@media (max-width: 1200px) {
    .bonus-card {
        max-width: 450px;
    }
}

@media (max-width: 992px) {
    .bonuses-cards {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .bonus-card {
        max-width: 100%;
    }
    
    .bonus-image {
        width: 160px;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .bonuses-section .section-header h2 {
        font-size: 1.7rem;
    }
    
    .bonus-header h4 {
        font-size: 1.5rem;
    }
    
    .bonus-description p {
        font-size: 1rem;
    }
    
    .shipping-notice h3 {
        font-size: 1.4rem;
    }
    
    .bonus-image {
        width: 140px;
        height: 180px;
    }
    
    .shipping-icon {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .bonus-card {
        padding: 20px;
    }
    
    .bonus-image {
        width: 120px;
        height: 160px;
    }
    
    .shipping-notice {
        padding: 25px;
    }
    
    .shipping-notice h3 {
        font-size: 1.3rem;
    }
    
    .customer-note {
        font-size: 1rem;
    }
}

/* Testimonials Section Styles */
.testimonials {
    padding: 80px 0;
    background-color: #fff;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

.overall-rating {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.overall-rating .stars {
    color: #ffc107;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.overall-rating p {
    font-size: 1.1rem;
    color: #333;
    margin: 0;
}

.testimonial-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.testimonial-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 25px;
    width: 100%;
    max-width: 350px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
}

.testimonial-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #4a90e2;
    flex-shrink: 0;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-rating {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.testimonial-rating .stars {
    color: #ffc107;
    font-size: 0.9rem;
}

.testimonial-rating span {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    color: #555;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    text-align: right;
}

.testimonial-author p {
    color: #333;
    margin: 0;
    font-size: 0.9rem;
}

.testimonial-conclusion {
    text-align: center;
    font-style: italic;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Real Users Results Section Styles */
.real-users-section {
    margin: 50px 0;
    padding: 40px 0;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.real-users-header {
    margin-bottom: 40px;
}

.real-users-header h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 700;
}

.real-users-header h4 {
    font-size: 1.5rem;
    color: #4a90e2;
    font-weight: 600;
}

.results-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.result-item {
    background: white;
    border-radius: 15px;
    padding: 25px;
    width: 100%;
    max-width: 280px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.result-item:hover {
    transform: translateY(-5px);
}

.result-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 4px solid #4a90e2;
}

.result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.result-stats {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ff6b6b;
    margin-bottom: 5px;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: #555;
    font-weight: 600;
}

/* Responsive Design for Real Users Section */
@media (max-width: 992px) {
    .results-grid {
        gap: 30px;
    }
    
    .result-item {
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    .real-users-section {
        margin: 40px 0;
        padding: 30px 0;
    }
    
    .real-users-header h3 {
        font-size: 1.7rem;
    }
    
    .real-users-header h4 {
        font-size: 1.3rem;
    }
    
    .results-grid {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    
    .result-item {
        max-width: 100%;
        padding: 20px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .real-users-header h3 {
        font-size: 1.5rem;
    }
    
    .real-users-header h4 {
        font-size: 1.2rem;
    }
    
    .result-image {
        width: 100px;
        height: 100px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
}

/* Responsive Design for Testimonials Section */
@media (max-width: 992px) {
    .testimonial-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .testimonial-card {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonial-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .testimonial-rating {
        align-items: center;
    }
    
    .testimonial-author {
        text-align: center;
    }
    
    .section-intro,
    .testimonial-conclusion {
        font-size: 1rem;
    }
}

/* Image Gallery Section Styles */
.image-gallery {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.image-gallery h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
    font-size: 2.5rem;
}

.section-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    color: #666;
}

.gallery-container {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    max-width: 1200px;
}

.gallery-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
    padding: 10px;
}

.gallery-item {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 300px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.image-caption {
    padding: 15px;
    text-align: center;
    background: white;
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

.gallery-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0 20px;
}

.gallery-prev,
.gallery-next {
    background: #4a90e2;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-prev:hover,
.gallery-next:hover {
    background: #3a7bc8;
    transform: scale(1.1);
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #4a90e2;
    transform: scale(1.2);
}

.dot:hover {
    background: #3a7bc8;
}

/* Responsive Design for Gallery */
@media (max-width: 1024px) {
    .gallery-item {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .image-gallery {
        padding: 60px 0;
    }
    
    .image-gallery h2 {
        font-size: 2rem;
    }
    
    .gallery-item {
        flex: 0 0 calc(100% - 20px);
    }
    
    .gallery-controls {
        margin: 25px 0 15px;
    }
    
    .gallery-prev,
    .gallery-next {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .image-gallery h2 {
        font-size: 1.8rem;
    }
    
    .section-intro {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .gallery-track {
        gap: 15px;
        padding: 5px;
    }
    
    .gallery-item {
        min-width: 250px;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .image-caption {
        padding: 12px;
        font-size: 0.9rem;
    }
}

/* Usage Section */
.usage {
    padding: 80px 0;
    background-color: white;
}

.usage h2 {
    color: #1a56db; /* Blue for section heading */
}

.usage-content {
    max-width: 800px;
    margin: 0 auto;
}

.usage-content ul {
    margin: 20px 0;
    padding-left: 20px;
}

.usage-content li {
    margin-bottom: 10px;
}

/* Safety Section */
.safety {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.safety h2 {
    color: #1a56db; /* Blue for section heading */
}

.safety-content {
    max-width: 800px;
    margin: 0 auto;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: white;
}

.faq h2 {
    color: #1a56db; /* Blue for section heading */
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 15px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
}

.faq-question h3 {
    margin-bottom: 0;
    color: #1a56db; /* Blue for questions */
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: #1a56db; /* Blue for toggle */
}

.faq-answer {
    padding: 0 0 20px;
    display: none;
}

.faq-answer.active {
    display: block;
}

/* Special Pricing Section Styles */
.special-pricing {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-top: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
}

.pricing-header {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 700;
}

.pricing-header p {
    font-size: 1.3rem;
    color: #666;
}

.pricing-cardsb {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.pricing-cardb {
    background: white;
    border-radius: 15px;
    padding: 30px;
    width: 100%;
    max-width: 320px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.pricing-cardb:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.pricing-cardb.popular {
    border: 3px solid #4a90e2;
    transform: scale(1.05);
}

.pricing-cardb.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badgeb {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #4a90e2;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(74, 144, 226, 0.3);
}

.package-typeb {
    font-size: 1.3rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.bottle-countb {
    font-size: 1.1rem;
    font-weight: 600;
    color: #4a90e2;
    margin-bottom: 5px;
}

.supply-duration {
    color: #666;
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.product-imageb {
    margin: 20px 0;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-imageb img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}



/* Responsive Design for Pricing Section */
@media (max-width: 1200px) {
    .pricing-cardsb {
        gap: 25px;
    }
    
    .pricing-cardb {
        max-width: 300px;
    }
}

@media (max-width: 992px) {
    .pricing-cardsb {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-cardb {
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .pricing-cardb.popular {
        transform: scale(1);
    }
    
    .pricing-cardb.popular:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .special-pricing {
        padding: 60px 0;
    }
    
    .pricing-header h2 {
        font-size: 2rem;
    }
    
    .pricing-header p {
        font-size: 1.1rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .security-badges {
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .pricing-cardb {
        padding: 20px;
    }
    
    .product-imageb {
        height: 150px;
    }
    
    .price {
        font-size: 2.2rem;
    }
    
    .security-badges {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .badge {
        justify-content: center;
    }
}

/* Final CTA Section Styles */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #4a90e2 0%, #3a7bc8 100%);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Large CTA Product Image - Unique class */
.cta-large-product-image {
    margin: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-large-product-image img {
    max-width: 450px; /* Extra large size */
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    border: 6px solid rgba(255, 255, 255, 0.15);
}

.cta-large-product-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

/* Horizontal CTA Buttons */
.cta-buttons-horizontal {
    display: flex;
    justify-content: center;
    gap: 25px;
    align-items: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.btn-primaryf {
    background: #ff6b6b;
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
    display: inline-block;
    min-width: 280px;
    text-align: center;
    flex-shrink: 0;
}

.btn-primaryf:hover {
    background: #e55c5c;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 107, 107, 0.5);
}

.btn-secondaryf {
    background: transparent;
    color: white;
    padding: 18px 35px;
    border: 3px solid white;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    min-width: 250px;
    text-align: center;
    flex-shrink: 0;
}

.btn-secondaryf:hover {
    background: white;
    color: #4a90e2;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

/* Responsive Design for Final CTA Section */
@media (max-width: 1200px) {
    .cta-large-product-image img {
        max-width: 400px;
    }
}

@media (max-width: 992px) {
    .cta-large-product-image img {
        max-width: 350px;
    }
    
    .btn-primaryf {
        min-width: 250px;
        font-size: 1.2rem;
        padding: 18px 35px;
    }
    
    .btn-secondaryf {
        min-width: 220px;
        font-size: 1.1rem;
        padding: 16px 30px;
    }
}

@media (max-width: 768px) {
    .final-cta {
        padding: 70px 0;
    }
    
    .final-cta h2 {
        font-size: 2.2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .cta-large-product-image {
        margin: 35px 0;
    }
    
    .cta-large-product-image img {
        max-width: 300px;
        border-width: 4px;
    }
    
    .cta-buttons-horizontal {
        flex-direction: column;
        gap: 18px;
        margin-top: 35px;
    }
    
    .btn-primaryf,
    .btn-secondaryf {
        width: 100%;
        max-width: 320px;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .final-cta {
        padding: 60px 0;
    }
    
    .final-cta h2 {
        font-size: 1.9rem;
    }
    
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .cta-large-product-image img {
        max-width: 250px;
        border-width: 3px;
        border-radius: 15px;
    }
    
    .btn-primaryf {
        padding: 16px 30px;
        font-size: 1.1rem;
        max-width: 280px;
    }
    
    .btn-secondaryf {
        padding: 14px 25px;
        font-size: 1rem;
        max-width: 250px;
        border-width: 2px;
    }
    
    .cta-buttons-horizontal {
        gap: 15px;
        margin-top: 30px;
    }
}


/* Footer Styles with FDA Disclaimer */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ecf0f1;
    padding: 50px 0 30px;
    border-top: 3px solid #4a90e2;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    text-align: center;
    margin-bottom: 30px;
}

.footer-logo a {
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-logo img {
    margin-right: 1px;
    width: 48px;
    height: 46px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    color: #4a90e2;
}

.footer-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #4a90e2;
    transition: width 0.3s ease;
}

.footer-links a:hover:after {
    width: 100%;
}

.footer-disclaimer {
    background: rgba(0, 0, 0, 0.2);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #e74c3c;
    margin-top: 20px;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #bdc3c7;
}

.footer-disclaimer p:first-child {
    margin-bottom: 20px;
}

.footer-disclaimer p:last-child {
    margin-bottom: 0;
    color: #95a5a6;
    font-size: 0.8rem;
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-disclaimer strong {
    color: #e74c3c;
    font-weight: 700;
}

/* Responsive Design for Footer */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 25px;
    }
    
    .footer-logo a {
        font-size: 1.7rem;
    }
    
    .footer-logo img {
        width: 40px;
        height: 38px;
    }
    
    .footer-links {
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .footer-disclaimer {
        padding: 25px 20px;
    }
    
    .footer-disclaimer p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .footer-logo a {
        font-size: 1.5rem;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .footer-disclaimer {
        padding: 20px 15px;
        border-left-width: 3px;
    }
    
    .footer-disclaimer p {
        font-size: 0.75rem;
    }
    
    .footer-disclaimer p:last-child {
        font-size: 0.7rem;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        margin: 15px 0;
        display: block;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-text, .about-text {
        padding: 0;
        margin-top: 30px;
    }
    
    .ingredient-item {
        flex-direction: column;
    }
    
    .ingredient-number {
        margin-bottom: 15px;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links a {
        margin: 10px 0;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fadeIn {
    animation: fadeIn 1s ease-in;
}

/* SEO Optimization */
.seo-keyword {
    font-weight: 600;
    color: #e53e3e; /* Red for SEO keywords */
}

.seo-longtail {
    font-style: italic;
    color: #ed8936; /* Orange for long-tail keywords */
}