* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.8;
    color: #333;
    background: #f8f9fa;
    font-size: 1.15rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10 20px;
}

/* Header */
header {
    background: rgb(0, 0, 0);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c3e50;
    display: flex;
    align-items: center;
}
.logo img {
    max-height: 55px;
    vertical-align: middle;
    margin-right: 10px;
}
.logo span {
    vertical-align: middle;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 1.1rem;
}

.nav-links a:hover {
    color: #db5918;
}

.order-btn {
    background: #2c3e50;
    color: white;
    padding: 0.9rem 1.7rem;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    font-size: 1.1rem;
}

.order-btn:hover {
    background: #ca0f0f;
    transform: translateY(-2px);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none; /* Hidden by default, shown in media query */
    background: none;
    border: none;
    font-size: 1.7rem;
    cursor: pointer;
    color: #2c3e50;
}

.mobile-menu {
    display: none; /* Hidden by default, shown when active */
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 0 0 10px 10px;
    padding: 1rem;
    flex-direction: column; /* Ensure vertical layout */
    align-items: flex-start; /* Align items to the left */
}

.mobile-menu.active {
    display: flex; /* Changed to flex to use flex-direction: column */
}

.mobile-menu .mobile-nav-links {
    flex-direction: column;
    padding: 0;
    gap: 1rem;
    width: 100%;
    list-style: none; /* ADD THIS LINE TO REMOVE BULLETS */
}
.mobile-menu .mobile-nav-links li {
    width: 100%;
}
.mobile-menu .mobile-nav-links li a {
    display: block;
    padding: 0.5rem 0;
    text-align: left;
    font-size: 1.1rem;
    color: #666; /* ADD/CHANGE THIS LINE TO SET LINK COLOR */
    font-weight: 500; /* ADD THIS LINE FOR CONSISTENT FONT WEIGHT */
    transition: color 0.3s; /* ADD THIS LINE FOR HOVER EFFECT */
}

.mobile-menu .mobile-nav-links li a:hover { /* ADD THIS NEW RULE FOR HOVER EFFECT */
    color: #db5918;
}.mobile-menu .order-btn-mobile {
    background: #113859;
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: block; /* Make it block level */
    width: fit-content;
    margin-top: 1.5rem;
}
.mobile-menu .order-btn-mobile:hover {
    background: #113859;
}


/* Hero Section */
.hero {
    background: linear-gradient(135deg, #113859 0%, #113859 100%);
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="60" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    animation: float 20s infinite linear;
}

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

.hero-content {
    display: grid;
    grid-template-columns: 3fr 2fr; /* Explicitly 60% for text, 40% for image */
    gap: 1rem; /* Further reduced gap */
    align-items: center;
    position: relative;
    z-index: 1;
    max-width: 100%;
    padding: 0 40px;
}
/* Further constrain content within hero for better visual balance */
.hero .container {
    max-width: 1050px; /* Adjusted maximum width of the content area within hero */
    padding: 0 20px;
}


.hero-text {
    /* Removed max-width here to allow it to expand with the 3fr grid column */
}

.hero-text h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}

.hero-text p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: #ff3700;
    color: white;
    padding: 0.9rem 1.8rem;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    font-size: 1.05rem;
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.btn-primary:hover {
    background: #ee750b;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(231, 76, 60, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 0.9rem 1.8rem;
    border: 2px solid white;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    font-size: 1.05rem;
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255,255,255,0.3);
}

.product-image {
    text-align: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.bottle-container {
    position: relative;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.bottle {
    width: 300px; /* Maintaining larger bottle size */
    height: 420px;
    background: url('assets/images/alphastreamplus-hero-image.webp') no-repeat center center;
    background-size: contain;
    position: relative;
}

.bottle::before {
    content: '';
}

.badge {
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    color: white;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.badge i {
    font-size: 4em; /* Use your current font-size */
    margin-bottom: 3px;
    line-height: 1;
    margin-left: 5px;  /* ADD THIS LINE */
    margin-right: 5px; /* ADD THIS LINE */
}

.badge-natural {
    background: #27ae60;
    top: -15px;
    left: -25px;
}

.badge-gmp {
    background: #9b59b6;
    top: -15px;
    right: -25px;
}

.badge-fda {
    background: #3498db;
    bottom: 60px;
    right: -35px;
}
/* Section Titles - Unified Style */
.section-title {
    text-align: center;
    font-size: 2.7rem;
    margin-bottom: 3.5rem;
    color: white;
    position: relative;
    background: #113859;
    padding: 2.2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    display: block;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #113859, #f39c12);
    border-radius: 2px;
}

/* Features Section (Our Commitment) */
.features {
    padding: 4.5rem 0;
    background: white;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0.5rem;
}

.feature-card {
    text-align: center;
    padding: 2.2rem;
    border-radius: 15px;
    background: #f8f9fa;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: #113859;
}

.feature-icon {
    width: 170px;
    height: 100px;
    margin: 0 auto 0rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.feature-icon2 {
    width: 170px;
    height: 167px;
    margin: 0 auto 0rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.feature-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* About Section (What is Alpha Stream Plus) */
.about {
    padding: 4.5rem 0;
    background: white;
    color: #333;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.8rem;
    color: #666;
    line-height: 1.8;
    font-size: 1.15rem;
}

.about-image {
    text-align: center;
}

.about-bottle {
    width: 270px;
    height: 380px;
    background: url('assets/images/alphastreamplus-about-image.webp') no-repeat center center;
    background-size: contain;
    position: relative;
    margin: 0 auto;
    transition: transform 0.3s;
}

/* How It Works Section */
.how-it-works {
    padding: 4.5rem 0;
    background: white;
    color: #333;
}

.how-it-works-content {
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}

.how-it-works-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.8rem;
    color: #666;
}

/* Ingredients Section */
.ingredients {
    padding: 4.5rem 0;
    background: white;
    color: #333;
    text-align: center;
}

.ingredients p {
    color: #666;
    margin-bottom: 2.5rem;
    font-size: 1.15rem;
}

.ingredients-list {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 850px;
    margin: 0 auto;
}

.ingredients-list li {
    background: #f0f4f7;
    padding: 1.2rem 1.8rem;
    margin-bottom: 1.2rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: flex-start;
}

.ingredients-list li::before {
    content: '✔';
    display: inline-block;
    margin-right: 18px;
    font-size: 1.2em;
    color: white;
    background-color: #27ae60;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    margin-top: 3px;
}

.ingredients-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.ingredients-list li strong {
    display: block;
    margin-bottom: 0.6rem;
    font-size: 1.25rem;
    color: #2c3e50;
}

.ingredients-list li p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 0;
}


/* Pricing Section */
.pricing-section {
    padding: 4.5rem 0;
    background: linear-gradient(135deg, #f0f4f7 0%, #e0e8f0 100%);
    text-align: center;
}

.pricing-cards-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 3.5rem;
}

.price-card {
    background: white;
    padding: 2.8rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    width: 340px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.price-card.highlighted {
    border-color: #113859;
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(231, 76, 60, 0.2);
    background: linear-gradient(135deg, #fffafa, #ffece6);
}


.price-card.highlighted::before {
    content: 'BEST VALUE!';
    position: absolute;
    top: -45px;
    right: -70px;
    background: #113859;
    color: white;
    padding: 5px 50px;
    font-size: 0.9rem;
    font-weight: bold;
    transform: rotate(45deg);
    transform-origin: 0% 100%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.price-card h3 {
    font-size: 1.9rem;
    margin-bottom: 1.2rem;
    color: #2c3e50;
}

.price-card p {
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 0.4rem;
}

.price-card img {
    max-width: 240px;
    margin: 1.8rem auto;
    display: block;
}

.old-price {
    text-decoration: line-through;
    color: #113859;
    font-size: 1.25rem;
    margin-bottom: 0.6rem;
}

.new-price {
    font-size: 2.8rem;
    color: #27ae60;
    font-weight: bold;
    margin-bottom: 1.2rem;
}

.price-card .save-text {
    font-size: 1.15rem;
    color: #113859;
    font-weight: bold;
    margin-bottom: 1.8rem;
}

.price-card .order-now-button {
    background: #113859;
    color: white;
    padding: 1.1rem 2.8rem;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    font-size: 1.15rem;
}

.price-card .order-now-button:hover {
    background: #113859;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(231, 76, 60, 0.3);
}

.price-card .shipping-info {
    font-size: 0.95rem;
    color: #888;
    margin-top: 1.2rem;
}

/* Benefits Section */
.benefits-section {
    padding: 4.5rem 0;
    background: white;
    color: #333;
}

.benefits-list {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 850px;
    margin: 3.5rem auto 0;
    counter-reset: benefit-counter;
}

.benefits-list li {
    background: #f8f9fa;
    padding: 1.2rem 1.8rem;
    margin-bottom: 1.2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: flex-start;
}

.benefits-list li::before {
    counter-increment: benefit-counter;
    content: counter(benefit-counter);
    display: inline-block;
    margin-right: 18px;
    font-size: 1.3em;
    font-weight: bold;
    color: white;
    background-color: #113859;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    margin-top: 3px;
}

.benefits-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.benefit-content-wrapper {
    flex-grow: 1;
}

.benefits-list li h3 {
    font-size: 1.35rem;
    color: #2c3e50;
    margin-top: 0;
    margin-bottom: 0.6rem;
}

.benefits-list li p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 1.05rem;
}

/* Testimonials/Reviews Section */
.reviews-section {
    padding: 4.5rem 0;
    background: linear-gradient(135deg, #f0f4f7 0%, #e0e8f0 100%);
    text-align: center;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3.5rem;
}

.review-card {
    background: white;
    padding: 2.2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.review-card::before {
    content: '“';
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 4.5rem;
    color: #113859;
    opacity: 0.1;
    line-height: 1;
}

.review-card p {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    color: #555;
    position: relative;
    z-index: 1;
}

.review-card .author {
    font-weight: bold;
    color: #2c3e50;
    margin-top: 1.2rem;
    display: block;
    font-size: 1.05rem;
}

.review-card .location {
    font-size: 0.95rem;
    color: #888;
}

.verified-badge {
    display: inline-block;
    background: #27ae60;
    color: white;
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 0.85rem;
    margin-bottom: 12px;
    font-weight: bold;
}


/* Guarantee Section */
.guarantee-section {
    padding: 4.5rem 0;
    background: white;
    text-align: center;
}
.guarantee-section p {
    max-width: 850px;
    margin: 2.5rem auto 0;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
}
.guarantee-section .guarantee-image {
    max-width: 220px;
    margin-top: 2.5rem;
    animation: bounce 2s infinite ease-in-out;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* FAQ Section */
.faq-section {
    padding: 4.5rem 0;
    background: linear-gradient(135deg, #f0f4f7 0%, #e0e8f0 100%);
}
.faq-list {
    max-width: 950px;
    margin: 3.5rem auto 0;
}
.faq-item {
    background: white;
    margin-bottom: 1.2rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.faq-question {
    padding: 1.6rem;
    font-size: 1.15rem;
    font-weight: bold;
    color: #2c3e50;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
    transition: background 0.3s ease;
}
.faq-question:hover {
    background: #e9ecef;
}
.faq-question::after {
    content: '+';
    font-size: 1.6rem;
    transition: transform 0.3s ease;
}
.faq-item.active .faq-question::after {
    content: '-';
    transform: rotate(180deg);
}
.faq-answer {
    padding: 0 1.6rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    color: #555;
    line-height: 1.7;
    font-size: 1.05rem;
}
.faq-item.active .faq-answer {
    max-height: 250px;
    padding: 1.6rem;
}

/* Call to Action */
.call-to-action-final {
    background: linear-gradient(135deg, #113859 0%, #113859 100%);
    color: white;
    padding: 4.5rem 0;
    text-align: center;
    border-radius: 15px;
    margin: 4.5rem auto;
    max-width: 1050px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.call-to-action-final::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 150%;
    height: 150%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="10" height="10" patternUnits="userSpaceOnUse"><circle cx="1" cy="1" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    animation: pattern-move 30s infinite linear;
}

@keyframes pattern-move {
    0% { background-position: 0 0; }
    100% { background-position: 100px 100px; }
}

.call-to-action-final h2 {
    font-size: 3rem;
    margin-bottom: 1.8rem;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
}
.call-to-action-final p {
    font-size: 1.4rem;
    margin-bottom: 1.8rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}
.call-to-action-final .price-display {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2.2rem;
    position: relative;
    z-index: 1;
}
.call-to-action-final .price-display .old {
    text-decoration: line-through;
    opacity: 0.7;
    margin-right: 18px;
}
.call-to-action-final .price-display .new {
    color: #d4edda;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}
.call-to-action-final .order-button {
    background: white;
    color: #113859;
    padding: 1.4rem 3.5rem;
    border: none;
    border-radius: 40px;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    text-decoration: none;
    display: inline-block;
    position: relative;
    z-index: 1;
}
.call-to-action-final .order-button:hover {
    transform: translateY(-5px) scale(1.02);
    background: #f0f0f0;
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

/* Trust & Transparency / Contact Section */
.trust-transparency-section {
    padding: 4.5rem 0;
    background: white;
    color: #333;
}
.trust-transparency-section .content-block {
    max-width: 950px;
    margin: 2.5rem auto;
    padding: 2.2rem;
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.trust-transparency-section .content-block h3 {
    font-size: 1.9rem;
    color: #2c3e50;
    margin-bottom: 1.2rem;
    border-bottom: 2px solid #eee;
    padding-bottom: 0.6rem;
}
.trust-transparency-section .content-block p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.8rem;
}
.trust-transparency-section .contact-info {
    text-align: center;
    margin-top: 2.5rem;
}
.trust-transparency-section .contact-info a {
    color: #113859;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.15rem;
}
.trust-transparency-section .contact-info a:hover {
    text-decoration: underline;
}


/* Blog Section */
.blog-section {
    padding: 4.5rem 0;
    background: linear-gradient(135deg, #f0f4f7 0%, #e0e8f0 100%);
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3.5rem;
}
.blog-post {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-post:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}
.blog-post img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}
.blog-post-content {
    padding: 1.8rem;
}
.blog-post-content h3 {
    font-size: 1.6rem;
    color: #2c3e50;
    margin-bottom: 0.9rem;
    line-height: 1.4;
}
.blog-post-content p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.8rem;
}
.blog-post-content a {
    display: inline-block;
    background: #113859;
    color: white;
    padding: 0.9rem 1.6rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
    font-size: 1rem;
}
.blog-post-content a:hover {
    background: #113859;
}


/* Footer */
footer {
    background: #2c3e50;
    color: white;
    padding: 3.5rem 0;
    font-size: 0.95rem;
    text-align: center;
}

footer .footer-nav {
    margin-bottom: 2.5rem;
}

footer .footer-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.8rem;
}

footer .footer-nav ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 1rem;
}

footer .footer-nav ul li a:hover {
    color: #c30c06;
}

footer .disclaimer {
    max-width: 950px;
    margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 2.5rem;
    font-size: 0.85rem;
    opacity: 0.8;
    line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        margin-bottom: 0;
    }
    body {
        font-size: 1.1rem;
    }
    .nav-links {
        display: none;
    }
    .order-btn { /* Hide desktop order button on mobile */
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding: 3rem 0; /* Adjusted padding for mobile hero */
        border-radius: 0;
        margin-top: 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem; /* Adjusted gap for mobile hero */
        padding: 0 20px;
    }
    /* Ensure inner container of hero adjusts on mobile */
    .hero .container {
        max-width: 100%;
        padding: 0 15px; /* Standard mobile padding */
    }

    .hero-text h1 {
        font-size: 2.4rem;
    }

    .hero-text p {
        font-size: 1.15rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 320px;
        text-align: center;
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .bottle {
        width: 180px;
        height: 270px;
    }

    .about-bottle {
        width: 220px;
        height: 310px;
    }

    .features-grid, .reviews-grid, .pricing-cards-wrapper, .blog-grid {
        grid-template-columns: 1fr;
    }
    .ingredients-list, .benefits-list {
        max-width: 100%;
        padding: 0 15px;
    }
    .section-title {
        font-size: 2.2rem;
        padding: 1.8rem;
        margin-bottom: 3rem;
    }

    .container {
        padding: 10px 15px;

    }

    .price-card {
        width: 90%;
        max-width: 380px;
    }
    .price-card.highlighted::before {
        right: -60px;
    }
    .call-to-action-final {
        margin: 2.5rem auto;
        padding: 3rem 15px;
    }
    .call-to-action-final h2 {
        font-size: 2.6rem;
    }
    .call-to-action-final p {
        font-size: 1.25rem;
    }
    .call-to-action-final .order-button {
        font-size: 1.25rem;
        padding: 1.1rem 2.5rem;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 1rem;
    }
    .hero {
        padding: 2.5rem 0;
    }

    .hero-text h1 {
        font-size: 2.1rem;
    }

    .hero-text p {
        font-size: 1.05rem;
    }

    .btn-primary, .btn-secondary {
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
        padding: 1.5rem;
        margin-bottom: 2.5rem;
    }

    .feature-card {
        padding: 1.8rem;
    }
    .bottle {
        width: 150px;
        height: 225px;
    }
    .about-bottle {
        width: 200px;
        height: 280px;
    }
    .badge {
        width: 70px;
        height: 70px;
        font-size: 0.8rem;
    }
    .price-card.highlighted::before {
        right: -70px;
    }
    .call-to-action-final {
        margin: 2rem auto;
        padding: 2.5rem 10px;
    }
    .call-to-action-final h2 {
        font-size: 2.2rem;
    }
    .call-to-action-final p {
        font-size: 1.1rem;
    }
    .call-to-action-final .order-button {
        font-size: 1.1rem;
        padding: 1rem 2rem;
    }
    .ingredients-list li, .benefits-list li {
        padding: 1rem 1.2rem;
        margin-bottom: 0.8rem;
    }
    .ingredients-list li strong, .benefits-list li h3 {
        font-size: 1.1rem;
    }
    .ingredients-list li p, .benefits-list li p {
        font-size: 0.95rem;
    }
}