/* Import Quicksand Font */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #272727;
    background-color: #fff;
}

/* Original website colors */
:root {
    --main-font-color: #272727;
    --accent-color-light: #00a536;
    --color-dark: #3d56b0;
    --color-light: #2fb3c5;
    --dark-blue-bg: #005598;
    --light-blue-bg-start: #89bae1;
    --light-blue-bg-mid: #5aa2db;
    --light-blue-bg-end: #416a8b;
    --light-blue-bg-final: #3d6a8d;
    --blend-bg-blue: #c9e0f1;
    --yellow-accent: #efd450;
    --light-blue-header: #c2daed;
    --red-accent: #ff4d43;
}

/* Header and Navigation */
header {
    background-color: var(--dark-blue-bg);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    height: 50px;
    max-width: 55%;
}

nav ul li a {
    color: var(--main-font-color);
    text-decoration: none;
    font-weight: 600;
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    background-color: var(--yellow-accent);
    color: var(--main-font-color);
    transform: translateY(-2px);
}

nav ul li img {
    height: 50px;
    transition: all 0.3s ease;
    border-radius: 30px;
}

nav ul li img:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Remove conflicting styles - using specific classes instead */

/* Hero Section */
.hero {
    text-align: center;
    padding: 2rem;
    background: radial-gradient(circle at 27% 50%, var(--light-blue-bg-start), var(--light-blue-bg-mid) 18%, var(--light-blue-bg-end) 56%, var(--light-blue-bg-final) 62%);
}

@media (max-width: 768px) {
    .hero {
        padding: 2rem 1rem;
    }
}

.hero-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 3rem;
    gap: 3rem;
}

@media (max-width: 768px) {
    .hero-top-row {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .hero-left, .hero-right {
        width: 100%;
        max-width: 500px;
    }
}





    .video-embed-container {
        position: relative;
        width: 100%;
        height: auto !important;
        overflow: visible !important;
    }

    .play-button {
        position: relative;
        z-index: 1000;
    }
}
}

.hero-left {
    flex: 1;
}

@media (max-width: 768px) {
    .hero-left {
        margin-bottom: 2rem;
    }
}

.hero-center {
    flex: 1;
    text-align: center;
}

.hero-bottom-row {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .hero-bottom-row {
        margin-top: 1rem;
    }
}

.hero-content-full {
    text-align: center;
    width: 100%;
}

    .video-container {
    max-width: 650px;
    margin: 0 auto;
    padding: 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

    @media (max-width: 768px) {
    .video-container {
        max-width: 100%;
        padding: 1rem;
    }

    .video-embed-container {
        width: 100%;
        height: auto !important;
    }

    .fallback-iframe {
        width: 100%;
    }
}
}

.video-container:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.video-embed-container {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    min-height: 350px;
}

#vturb-video-player {
    width: 100%;
    height: 350px;
    position: relative;
}

.video-fallback {
    display: none;
}

.fallback-iframe {
    width: 350px;
    height: 170px;
    border: none;
    border-radius: 15px;
}

.video-loading-overlay {
    display: none;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid var(--yellow-accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.video-placeholder {
    position: relative;
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, rgba(0, 85, 152, 0.8), rgba(47, 179, 197, 0.8));
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.3s ease;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-placeholder:hover::before {
    opacity: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--yellow-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(239, 212, 80, 0.4);
    position: relative;
    z-index: 1000;
    cursor: pointer;
}

.video-placeholder:hover .play-button {
    transform: scale(1.1);
    background: #f5d03e;
    box-shadow: 0 15px 40px rgba(239, 212, 80, 0.6);
}

.play-icon {
    font-size: 2rem;
    color: var(--main-font-color);
    margin-left: 8px;
}

.video-placeholder p {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    position: relative;
    z-index: 2;
    font-family: 'Quicksand', sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-image {
    max-width: 250px;
    margin-bottom: 1.5rem;
    width: 40%;
}

@media (max-width: 768px) {
    .hero-image {
        max-width: 200px;
        margin-bottom: 1rem;
        width: 60%;
    }
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-family: 'Quicksand', sans-serif;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.8rem;
    }
}

.hero p {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

.certifications {
    max-width: 600px;
    margin: 2rem auto;
}

/* Science Section */
.science {
    padding: 4rem 2rem;
    background-color: #fff;
}

.science-content {
    max-width: 1200px;
    margin: 0 auto 2rem;
}



.science-right {
    text-align: center;
}

.doctor-image {
    max-width: 450px;
    border-radius: 10px;
    width: 100%;
    height: auto;
}

.science h2 {
    font-size: 2rem;
    color: var(--accent-color-light);
    margin-bottom: 1rem;
    font-family: 'Quicksand', sans-serif;
}

.science h3 {
    font-size: 1.5rem;
    color: var(--main-font-color);
    margin-bottom: 1rem;
    font-family: 'Quicksand', sans-serif;
}

.science p {
    font-size: 1.1rem;
    color: var(--main-font-color);
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.sub-logo {
    height: 60px;
    margin: 2rem 0;
    max-width: 280px;
}

.bottles-container {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.bottles-image {
    max-width: 500px;
    margin: 1rem auto;
}

.dark-blue-bg-round {
    background-color: var(--dark-blue-bg);
    border-radius: 5px;
    padding: 1rem;
    margin-top: 2rem;
}

.dark-blue-bg-round p {
    color: #fff;
    text-align: center;
    margin: 0;
}

/* Ingredients Section */
.ingredients {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.ingredients::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 165, 54, 0.02) 0%, transparent 70%);
    animation: float 25s ease-in-out infinite;
    pointer-events: none;
}

.ingredients h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--main-font-color);
    margin-bottom: 3rem;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.ingredients p {
    text-align: center;
    font-size: 1.2rem;
    color: var(--main-font-color);
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.ingredient {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ingredient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color-light), var(--color-dark), var(--accent-color-light));
    animation: shimmer 4s ease-in-out infinite;
}

.ingredient:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
    border-color: var(--accent-color-light);
}

.ingredient:hover::before {
    animation-duration: 2s;
}

.ingredient img {
    width: 120px;
    height: 120px;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
}

.ingredient:hover img {
    transform: scale(1.1) rotate(5deg);
}

.ingredient h3 {
    font-size: 1.6rem;
    color: var(--main-font-color);
    margin-bottom: 1rem;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    text-align: center;
}

.ingredient ul {
    list-style: none;
    text-align: left;
}

.ingredient li {
    padding: 0.4rem 0;
    color: var(--main-font-color);
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.3rem;
    transition: transform 0.2s ease;
}

.ingredient li::before {
    content: "→";
    color: var(--accent-color-light);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0.8rem;
    font-size: 1.2rem;
}

.ingredient li:hover {
    transform: translateX(5px);
    color: var(--color-dark);
}

.ingredients-banner {
    max-width: 800px;
    margin: 4rem auto;
    display: block;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.proprietary-blend {
    background: var(--blend-bg-blue);
    border-radius: 15px;
    padding: 3rem;
    margin: 4rem auto;
    max-width: 1000px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.proprietary-blend::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color-light), var(--color-dark), var(--accent-color-light));
    animation: shimmer 3.5s ease-in-out infinite;
}

.proprietary-blend h3 {
    font-size: 1.8rem;
    color: var(--main-font-color);
    margin-bottom: 1.5rem;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    text-align: center;
}

.proprietary-blend ul {
    list-style: none;
    max-width: 700px;
    margin: 0 auto;
}

.proprietary-blend li {
    padding: 1rem 0;
    color: var(--main-font-color);
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

.proprietary-blend li::before {
    content: "✓";
    color: var(--accent-color-light);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 1rem;
    font-size: 1.3rem;
}

.proprietary-blend li:hover {
    transform: translateX(5px);
    color: var(--color-dark);
}

.features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 3rem auto 0;
}

.feature {
    background: rgba(0, 165, 54, 0.05);
    border: 1px solid var(--accent-color-light);
    border-radius: 50px;
    padding: 1.2rem 1.8rem;
    text-align: center;
    transition: all 0.3s ease;
    flex: 1;
    max-width: 220px;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 165, 54, 0.2);
    background: rgba(0, 165, 54, 0.1);
}

.feature img {
    width: 24px;
    height: 24px;
    margin-bottom: 0.5rem;
}

.feature span {
    color: var(--main-font-color);
    font-weight: 600;
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
}

/* Bonuses Section */
.bonuses {
    padding: 4rem 2rem;
    background: radial-gradient(circle at 27% 50%, var(--light-blue-bg-start), var(--light-blue-bg-mid) 18%, var(--light-blue-bg-end) 56%, var(--light-blue-bg-final) 62%);
    text-align: center;
}

.bonuses h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 3rem;
    font-family: 'Quicksand', sans-serif;
}

.bonuses {
    padding: 4rem 2rem;
    background: radial-gradient(circle at 27% 50%, var(--light-blue-bg-start), var(--light-blue-bg-mid) 18%, var(--light-blue-bg-end) 56%, var(--light-blue-bg-final) 62%);
    text-align: center;
}

.bonuses h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 3rem;
    font-family: 'Quicksand', sans-serif;
}

.bonuses-container {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
    align-items: stretch;
}

.bonus {
    flex: 1;
    max-width: 500px;
    border: 5px solid var(--dark-blue-bg);
    border-radius: 10px;
    background-color: #fff;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bonus:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.bonus img {
    width: 350px;
    height: auto;
    text-align: center;
}

.bonus h3 {
    font-size: 1.3rem;
    color: var(--main-font-color);
    margin-bottom: 1rem;
    font-family: 'Quicksand', sans-serif;
}

.bonus p {
    color: var(--main-font-color);
    margin-bottom: 0.5rem;
}

.bonus strong {
    color: var(--accent-color-light);
}

.bonus-blue-border {
    border: 5px solid var(--dark-blue-bg);
    border-radius: 10px;
}

.dark-blue-bg {
    background-color: var(--dark-blue-bg);
    padding: 1rem;
    margin: 1rem 0;
}

.dark-blue-bg p {
    color: #fff;
    text-align: center;
    margin: 0;
}

.free_book {
    font-size: 22px;
    background: var(--red-accent);
    text-align: center;
    color: #fff;
    padding: 1rem;
    margin: 1rem 0;
}

/* Shipping Section */
.shipping {
    padding: 3rem 2rem;
    background-color: var(--dark-blue-bg);
    text-align: center;
}

.shipping img {
    max-width: 200px;
    margin-bottom: 2rem;
}

.shipping h2 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1rem;
    font-family: 'Quicksand', sans-serif;
}

.shipping em {
    color: #fff;
    font-size: 0.9rem;
}

.free_shipping {
    text-align: center;
    background: var(--dark-blue-bg);
    color: #fff;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding: 1rem;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 85, 152, 0.03) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.testimonials h2 {
    font-size: 2.5rem;
    color: var(--main-font-color);
    margin-bottom: 3rem;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    position: relative;
    z-index: 1;
    text-align: center;
    line-height: 1.2;
}

.testimonial-images {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.testimonial-images img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-images img:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

.testimonial {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    padding: 30px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 1;
    border-left: 5px solid var(--accent-color-light);
}

.testimonial:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: -15px;
    left: 30px;
    font-size: 4rem;
    color: var(--accent-color-light);
    font-family: Georgia, serif;
    opacity: 0.3;
}

.testimonial img {
    width: 120px;
    height: 120px;
    border-radius: 15px;
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.testimonial:hover img {
    transform: scale(1.05);
}

.testimonial h3 {
    font-size: 1.3rem;
    color: var(--main-font-color);
    margin-bottom: 0.8rem;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
}

.testimonial .verified {
    color: var(--accent-color-light);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 165, 54, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    border: 1px solid var(--accent-color-light);
}

.testimonial .verified::before {
    content: '✓';
    display: inline-block;
    width: 18px;
    height: 18px;
    background: var(--accent-color-light);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 18px;
    font-size: 0.8rem;
}

.testimonial p {
    color: var(--main-font-color);
    font-style: italic;
    font-size: 1.2rem;
    font-family: 'Quicksand', sans-serif;
    line-height: 1.6;
    position: relative;
    padding-left: 1rem;
}

.testimonial p::before {
    content: '"';
    position: absolute;
    left: -1rem;
    top: 0;
    color: var(--accent-color-light);
    font-size: 2rem;
    opacity: 0.5;
}

.testimonials em {
    color: #666;
    font-size: 1rem;
    margin-top: 3rem;
    display: block;
    text-align: center;
    font-style: normal;
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem 2rem;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
}

.testimonial-face {
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.testimonial-stars {
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 4px rgba(255, 193, 7, 0.3));
}

.smaller2 {
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Quicksand', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bigger {
    font-size: 1.2rem;
    font-family: 'Quicksand', sans-serif;
    line-height: 1.5;
}

.testimonial_block {
    width: 80%;
    margin-left: 10%;
    background: #ffffff;
    padding: 20px;
    box-shadow: 0px 0px 10px #e5e5e5;
}

/* Enhanced Testimonial Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.customers-showcase {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.customer-avatars {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.avatar:hover {
    transform: scale(1.1) translateY(-5px);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border-left: 5px solid var(--accent-color-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color-light), var(--color-dark), var(--accent-color-light));
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    border-left-width: 8px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.customer-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.customer-photo:hover {
    transform: scale(1.05);
}

.customer-info h3 {
    font-size: 1.2rem;
    color: var(--main-font-color);
    margin-bottom: 0.5rem;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
}

.rating {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stars {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(255, 193, 7, 0.3));
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(0, 165, 54, 0.1), rgba(0, 165, 54, 0.05));
    color: var(--accent-color-light);
    padding: 0.4rem 0.8rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(0, 165, 54, 0.2);
    font-family: 'Quicksand', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.check-icon {
    width: 12px;
    height: 12px;
    background: var(--accent-color-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.check-icon::before {
    content: '✓';
    color: #fff;
    font-size: 0.7rem;
    font-weight: bold;
}

.testimonial-content {
    position: relative;
}

.testimonial-content p {
    font-size: 1.1rem;
    color: var(--main-font-color);
    line-height: 1.6;
    font-style: italic;
    font-family: 'Quicksand', sans-serif;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-content p::before {
    content: '"';
    position: absolute;
    left: -1.5rem;
    top: 0;
    color: var(--accent-color-light);
    font-size: 2rem;
    opacity: 0.3;
    font-family: Georgia, serif;
}

.disclaimer {
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    border: 1px solid #e0e0e0;
    margin-top: 2rem;
}

.disclaimer p {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
    margin: 0;
}

/* Animations */
.fade-in {
    animation: fadeIn 0.8s ease-out;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.fade-in-up.delay-1 {
    animation-delay: 0.2s;
}

.fade-in-up.delay-2 {
    animation-delay: 0.4s;
}

.float-delay-1 {
    animation-delay: 0s;
}

.float-delay-2 {
    animation-delay: 0.2s;
}

.float-delay-3 {
    animation-delay: 0.4s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

.delay-5 {
    animation-delay: 0.5s;
}

.d-flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

.flex-md-row {
    flex-direction: row;
}

.px-3 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.ml-2 {
    margin-left: 0.5rem;
}

.ml-lg-3 {
    margin-left: 1rem;
}

.mt-5 {
    margin-top: 3rem;
}

.my-5 {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.pt-2 {
    padding-top: 0.5rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.d-inline {
    display: inline;
}

.d-inline-block {
    display: inline-block;
}

.d-md-block {
    display: none;
}

.d-md-none {
    display: block;
}

@media (min-width: 768px) {
    .d-md-block {
        display: block;
    }
    
    .d-md-none {
        display: none;
    }
    
    .flex-md-row {
        flex-direction: row;
    }
}

/* Pricing Section */
.pricing {
    padding: 4rem 2rem;
    background-color: #fff;
}

.pricing h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--main-font-color);
    margin-bottom: 3rem;
    font-family: 'Quicksand', sans-serif;
}

.packages {
    display: grid;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

@media (min-width: 768px) {
    .packages {
        grid-template-columns: repeat(3, 1fr);
    }
}

.price-box {
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    min-width: 280px;
    display: flex;
    flex-direction: column;
}



.price-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.price-box.highlighted {
    border-color: var(--yellow-accent);
    transform: scale(1.05);
    z-index: 1;
}

.price-box.middle {
    order: 2;
}

.price-box.left {
    order: 1;
}

.price-box.right {
    order: 3;
}

.price_header {
    background: var(--light-blue-header);
    padding: 0.8rem 1.5rem;
    text-align: center;
}

.price_header h3 {
    color: var(--main-font-color);
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
    font-family: 'Quicksand', sans-serif;
}

.price_header p {
    color: var(--main-font-color);
    margin: 0.3rem 0 0;
    font-size: 1rem;
}

.card-product {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.price_product_box {
    text-align: center;
    margin-bottom: 0.8rem;
}

.price_product_box img {
    max-width: 250px;
    height: auto;
}

.pricebox-product-img6 {
    max-height: 210px;
    width: 50%;
}

.price_opt {
    text-align: center;
    margin: 0.8rem 0;
}

.price_opt div {
    font-size: 60px;
    font-weight: 700;
    color: var(--color-dark);
    font-family: sans-serif;
    display: inline-block;
}

.price_opt span {
    font-size: 15px;
    font-weight: 500;
    width: 62px;
    display: inline-block;
    text-align: left;
    padding-left: 10px;
    line-height: 17px;
    position: relative;
    top: -19px;
}

.free_shipping {
    text-align: center;
    color: #fff;
    margin: 0.5rem 0;
    font-size: 1rem;
}

.free_book {
    font-size: 22px;
    background: var(--red-accent);
    text-align: center;
    color: #fff;
    padding: 0.5rem;
    margin: 1rem 0;
}

.bonus-image {
    width: 300px;
    height: auto;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.bonus:hover .bonus-image {
    transform: scale(1.05);
}

.bonus-title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    font-family: 'Quicksand', sans-serif;
}

.bonus-content {
    padding: 1.5rem 0;
}

.price-info {
    font-size: 1rem;
    color: var(--main-font-color);
    margin-bottom: 1rem;
    font-family: 'Quicksand', sans-serif;
}

.strikeout {
    text-decoration: line-through;
    color: #999;
    margin-right: 0.5rem;
}

.free-text {
    color: var(--accent-color-light);
    font-size: 1.2rem;
    font-weight: 700;
}

.accent-yellow {
    color: var(--yellow-accent);
    font-weight: 700;
}

.buy-button1, .buy-button3, .buy-button6 {
    width: 200px;
    height: auto;
    transition: transform 0.3s;
    margin: 1rem auto;
    display: block;
}

.buy-button1:hover, .buy-button3:hover, .buy-button6:hover {
    transform: scale(1.05);
}

.card-section {
    margin-top: auto;
    padding: 1rem 2rem 2rem;
}

.pricebox-total-price {
    text-align: center;
    font-size: 1.1rem;
    color: var(--main-font-color);
    margin: 1rem 0;
}

.pricebox-total-price strong {
    color: var(--accent-color-light);
    font-size: 1.3rem;
}

.credit-cards {
    width: 150px;
    height: auto;
    margin: 1rem auto 0;
    display: block;
}

.customer-says {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background-color: #fff;
    border-radius: 10px;
}

.customer-says p {
    color: var(--main-font-color);
    margin-bottom: 1rem;
}

/* Missing classes from original website */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding-right: 15px;
    padding-left: 15px;
}

.col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

.px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.px-lg-0 {
    padding-left: 0;
    padding-right: 0;
}

.px-3 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-lg-3 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.pl-0 {
    padding-left: 0;
}

.pl-lg-3 {
    padding-left: 1rem;
}

.py-3 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-lg-0 {
    padding-top: 0;
    padding-bottom: 0;
}

.py-lg-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-lg-4 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-4 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-lg-0 {
    margin-top: 0;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-lg-1 {
    margin-bottom: 0.25rem;
}

.mb-lg-3 {
    margin-bottom: 1rem;
}

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

.text-dark {
    color: #343a40 !important;
}

.d-block {
    display: block;
}

.d-lg-block {
    display: none;
}

.d-none {
    display: none;
}

.d-lg-none {
    display: block;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.semi-b {
    font-weight: 500;
}

.pricebox-bottle-nr {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--main-font-color);
    margin-bottom: 0;
}

.pricebox-day-supply-nr {
    color: var(--main-font-color);
    margin: 0.5rem 0 0;
    font-size: 1rem;
}

.prod_width {
    flex: 1;
}

.pricebox-m-product-img1, .pricebox-m-product-img3, .pricebox-m-product-img6 {
    max-height: 210px;
    width: 50%;
}

.pricebox-product-img1, .pricebox-product-img3, .pricebox-product-img6 {
    max-height: 210px;
    width: 50%;
}

.pricebox-product-img3 {
    width: 88%;
}

.add_script {
    text-decoration: none;
}

.add_view {
    text-decoration: none;
}

@media (min-width: 992px) {
    .d-lg-block {
        display: block;
    }
    
    .d-lg-none {
        display: none;
    }
    
    .pricebox-product-img1 {
        max-height: 210px;
        width: 50%;
    }

    .pricebox-product-img3 {
        width: 88%;
    }
}

/* Guarantee Section */
.guarantee {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
    position: relative;
}

.guarantee img {
    max-width: 300px;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.guarantee h2 {
    font-size: 2rem;
    color: var(--main-font-color);
    margin-bottom: 2rem;
    font-family: 'Quicksand', sans-serif;
    text-align: center;
    position: relative;
    z-index: 2;
}

.guarantee p {
    font-size: 1.1rem;
    color: var(--main-font-color);
    max-width: 800px;
    margin: 0 auto 2rem;
    font-family: 'Quicksand', sans-serif;
}

.white-bg-rounded {
    background-color: #fff;
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
}

.badges-bg-blue {
    background-color: var(--dark-blue-bg);
    padding: 2rem;
}

.guarantee img {
    max-width: 300px;
    margin-bottom: 2rem;
}

.guarantee h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.guarantee p {
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 2rem;
}

/* FAQ Section */
.faq {
    padding: 4rem 2rem;
    background-color: #fff;
}

.faq h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--main-font-color);
    margin-bottom: 3rem;
    font-family: 'Quicksand', sans-serif;
}

.faq-item {
    max-width: 800px;
    margin: 0 auto 1rem;
    background-color: #efefef;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background-color: #f5f5f5;
}

.faq-item.active {
    background-color: #e8e8e8;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 2rem;
    text-align: left;
    font-size: 1.3rem;
    color: var(--main-font-color);
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--accent-color-light);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background-color: #fff;
    padding: 0 2rem;
}

.faq-answer p {
    color: var(--main-font-color);
    line-height: 1.6;
    padding: 1rem 0;
    margin: 0;
}

.faq-item.active .faq-answer {
    padding: 0 2rem 1.5rem;
}

.accordion {
    background-color: #efefef;
    border: none;
    cursor: pointer;
    text-align: left;
    margin-bottom: 20px;
    width: 100%;
    border-radius: 11px;
    outline: none;
    transition: 0.4s;
    font-size: 30px;
    font-family: 'Quicksand', sans-serif;
    padding: 1rem;
}

.accordion:hover {
    background-color: lightgrey;
    transition: 0.4s;
}

.panel {
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    font-family: 'Quicksand', sans-serif;
}

/* Scientific References */
.scientific-references {
    padding: 4rem 2rem;
    background-color: #fff;
    text-align: center;
}

.universities {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.universities img {
    height: 60px;
    width: auto;
}

.scientific-references h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.scientific-references ol {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
    columns: 2;
    column-gap: 2rem;
}

.scientific-references li {
    color: #555;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    break-inside: avoid;
}

/* Footer */
footer {
    background-color: var(--dark-blue-bg);
    color: #fff;
    padding: 3rem 2rem 1rem;
    text-align: center;
}

footer nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

footer nav a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

footer nav a:hover {
    color: #ccc;
}

.contact {
    margin-bottom: 2rem;
}

.contact p {
    margin-bottom: 0.5rem;
}

.contact a {
    color: #fff;
    text-decoration: none;
}

.contact a:hover {
}

.disclaimer {
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: left;
}

.disclaimer p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    opacity: 0.8;
}

footer p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-wrapper {
    position: relative;
    overflow: hidden;
}

.footer-top-bg {
    background-color: var(--dark-blue-bg);
}

.footer-middle-bg {
    background-color: #000;
}

.footer-bottom-bg {
    background-color: darkgray;
}

.copyright {
    padding: 2rem;
    text-align: center;
    font-size: 16px;
}

/* Responsive Design */


    .hero h1 {
        font-size: 2rem;
    }



    .video-embed-container {
        min-height: 250px;
    }

    #vturb-video-player {
        height: 250px;
    }

    .video-placeholder {
        height: 250px;
    }

    .fallback-iframe {
        height: 250px;
    }

    #vturb-video-player {
        height: 280px;
    }

    .video-placeholder {
        height: 280px;
    }

    .fallback-iframe {
        height: 280px;
    }

    #vturb-video-player {
        height: 280px;
    }

    .video-placeholder {
        height: 300px;
    }

    .fallback-iframe {
        height: 300px;
    }

.uniform-bottle-image {
    width: 200px !important;
    height: 200px !important;
    object-fit: contain !important; /* To prevent distortion */
    padding: 0 !important;
}
        width: 40px;
        height: 40px;
    }

    .ingredient {
        flex-direction: column;
        text-align: center;
    }

    .bonus {
        flex-direction: column;
        text-align: center;
    }

    .testimonial {
        flex-direction: column;
        text-align: center;
    }







    .scientific-references ol {
        columns: 1;
    }



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

    .price-box {
        max-width: 100%;
        margin-bottom: 1rem;
        order: unset !important;
    }

    .price-box.highlighted {
        transform: none;
    }

    

    .science-content {
        text-align: center;
    }

    

    .pricebox-m-product-img1, .pricebox-m-product-img3, .pricebox-m-product-img6 {
        max-height: 100%;
    }

    .header_margin {
        margin-top: -5%;
    }

    .price_margin {
        margin-bottom: 11%;
    }
}

@media (max-width: 480px) {
    .hero, .science, .ingredients, .bonuses, .shipping, .testimonials, .pricing, .guarantee, .faq, .scientific-references {
        padding: 2rem 1rem;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .package {
        padding: 1rem;
    }

    .faq-item {
        padding: 1rem;
    }
}
.top-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: #00BAF0;
    background: inherit;
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    color: #FFF;
    height: 50px;
    padding: 1em;
  }
  
  .menu {
    display: flex;
    flex-direction: row;
    list-style-type: none;
    margin: 0;
    padding: 0;
  }
  
  .menu > li {
    margin: 0 1rem;
    overflow: hidden;
  }
  
  .menu-button-container {
    display: none;
    height: 100%;
    width: 30px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  #menu-toggle {
    display: none;
  }
  
  .menu-button,
  .menu-button::before,
  .menu-button::after {
    display: block;
    background-color: #fff;
    position: absolute;
    height: 4px;
    width: 30px;
    transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 2px;
  }
  
  .menu-button::before {
    content: '';
    margin-top: -8px;
  }
  
  .menu-button::after {
    content: '';
    margin-top: 8px;
  }
  
  #menu-toggle:checked + .menu-button-container .menu-button::before {
    margin-top: 0px;
    transform: rotate(405deg);
  }
  
  #menu-toggle:checked + .menu-button-container .menu-button {
    background: rgba(255, 255, 255, 0);
  }
  
  #menu-toggle:checked + .menu-button-container .menu-button::after {
    margin-top: 0px;
    transform: rotate(-405deg);
  }
  .menu > li a{
      color:#fff;
      font-size:19px;
      text-decoration:none;
 
  }

  .menu > li a:hover{
    text-decoration:none;
  }
  
  @media (max-width: 992px) {
    .menu-button-container {
      display: flex;
      position: fixed;
      right: 4%;
    background: #007953;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    z-index: 999999999;
    }
    .menu {
        position:fixed;
        z-index:99999999;
      top: 0;
      margin-top: 0px !important;
      left: 0;
      flex-direction: column;
      width: 100%;
      justify-content: start;
      align-items: center;
      z-index:9999;
    }
    #menu-toggle ~ .menu li {
      height: 0;
      margin: 0;
      padding: 0;
      border: 0;
      transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
    }
    #menu-toggle:checked ~ .menu li {
      border: 1px solid #007953;
      height: 3.5em;
      padding: 0.5em;
      transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
    }
    #menu-toggle:checked ~ .menu li a{
        color:#fff;
        text-align:left;
        font-size: 19px;
    }
    .menu > li {
      display: flex;
      margin: 0;
      padding: 0.5em 0;
      width: 100%;
      color: white;
      background-color: #007953;
    }
    .menu > li:not(:last-child) {
      border-bottom: 1px solid #007953;
    }

    .features {
        flex-direction: column;
        gap: 1rem;
        max-width: 400px;
    }
  }
  @media (max-width: 860px) {
    .menu {
        margin-top: 90px;
    }
  }

  @media (max-width: 481px) {
    .menu {
        margin-top: 80px;
    }
  }
  
  .hov a:hover{
    color:#ccc;
  }
  
  #refrences a{
      color:#272727;
  }
  

.order-now-button{
    max-width: 120px;
    height: 40px;
    transition: .5s;
    margin-top: -10px;
    position: relative;
    left: -10px;
}


.order-now-btn {
    background: linear-gradient(to right, #4080FF, #3A75E6);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.order-now-btn:hover {
    background: linear-gradient(to right, #3A75E6, #3369D3);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}


.hero-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-left {
    flex: 1;
    padding-right: 20px;
}

.hero-right {
    flex: 1;
}


.uniform-bottle-image {
    width: 75% !important;
    max-height: 210px !important;
    padding: 0 !important;
}