:root {
    --primary-color: #021906;
    --text-color: #000; /* Black color */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
}

body {
    font-family: Arial, sans-serif;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

p {
    margin-bottom: 16px;
    font-size: 1.8em;
}

h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.section {
    padding: 20px 0;
}

.btn {
    border: 2px solid #000702; /* Add a border */
    background: linear-gradient(135deg, #ffff00 0%, #b8860b 100%); /* Yellow gradient background */
    color: #000; /* Black text color for better contrast with yellow */
    padding: 14px 30px; /* Slightly more padding */
    border-radius: 10px; /* More rounded corners */
    font-size: 1.8rem;
    font-weight: bold;
    box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.4); /* A bit stronger shadow */
    transition: background 0.3s ease, transform 0.3s ease; /* Transition for both background and transform */
}

.btn:hover {
    background: linear-gradient(135deg, #ffff33 0%, #daa520 100%); /* Slightly brighter yellow gradient on hover */
    transform: scale(1.05); /* Slightly scale up on hover */
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5); /* Stronger shadow on hover */
}

.subtitle {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.navbar {
    background-color: #16271D;
    padding: 20px 0;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar__logo {
    color: #fff;
    font-size: 2.4rem;
    font-weight: 600;
}

.navbar__menu {
    display: none;
}

.hero {
    padding: 40px 0;
    background: radial-gradient(circle, #167803 100%);
}

.hero__title {
    color: #fff;
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero__subtitle {
    font-family: Arial, sans-serif;
    color: #fff; /* Set the color to white for all screen sizes */
    font-size: 20px;
}

.hero__list {
    margin: 30px 0;
}

.hero__list-item {
    font-weight: 600;
    font-size: 2rem;
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.hero__list-item::before {
    content: "⭐";
    font-size: 20px;
    margin-right: 10px;
    margin-top: -5px;
}

.hero__btn {
    text-transform: uppercase;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 600;
    background-color: var(--primary-color);
    border-radius: 8px;
    padding: 10px 10px;
    margin-top: 20px;
}

.hero__img {
    width: 100%;
    max-width: 400px;
}

.benefits__list {
    list-style: disc;
    margin-left: 20px;
}

.guarantee {
    background: radial-gradient(circle, #003B00 100%);
    color: #fff;
    padding: 30px 0;
    margin: 40px 0;
    text-align: center; /* Center text in the section */
}

.guarantee img {
    width: 100%;
    max-width: 300px;
    margin-bottom: 40px;
}

/* Center guarantee image on mobile */
@media screen and (max-width: 480px) {
    .guarantee img {
        display: block; /* Make it a block element */
        margin-left: auto;
        margin-right: auto;
    }
}

.order {
    text-align: center;
}

.order__title {
    font-size: 3rem;
    margin-bottom: 20px;
}

.order__title,
.order__subtitle {
    color: var(--primary-color);
}

.checkout__title {
    color: #fff;
    background-color: var(--primary-color);
    font-size: 2rem;
    text-align: center;
    padding: 20px 30px;
    margin-bottom: 20px;
}

.links {
    background-color: var(--primary-color);
    padding: 20px 0;
}

.links a {
    color: #fff;
    font-weight: 400;
}
.footer {
    margin-top: 40px;
    padding: 20px 0; /* Reduced padding */
    text-align: center; /* Center the content */
    background-color: #f9f9f9; /* Light background for a clean look */
    color: var(--text-color); /* Use your default text color */
    font-size: 0.9em; /* Slightly smaller font size for the footer */
}

.footer .container {
    max-width: 960px;
    margin: 0 auto;
}

.footer p {
    font-size: 1em;
    margin-bottom: 10px;
}

.footer__copyright {
    font-size: 0.9em;
    font-weight: normal;
}

.footer__links {
    margin-top: 15px;
    text-align: center;
}

.footer__links a {
    color: var(--text-color); /* Use your default text color (should be black) */
    text-decoration: none;
    margin: 0 10px;
    font-size: 0.8em;
}

.footer__links a:hover {
    text-decoration: underline; /* Optional: Add underline on hover */
}

/* Tablets */
@media screen and (min-width: 481px) {
    p {
        font-size: 2rem;
    }
    .subtitle {
        font-size: 2.4rem;
    }
    .hero__title {
        font-size: 3rem;
    }
    .hero__subtitle {
        color: #fff;
        /* font-size: 2.8rem; */
    }
}

/* Small screens, laptops */
@media screen and (min-width: 769px) {
    p {
        font-size: 2.2rem;
    }

    p, h1, h2, h3, h4, h5, h6 {
        font-weight: normal;
    }

    .subtitle {
        font-size: 3rem;
    }
    .navbar {
        padding: 30px 0;
    }
    .navbar__logo {
        font-size: 3.4rem;
    }
    .navbar__menu {
        display: flex;
    }
    .navbar__menu-item {
        margin-right: 30px;
        font-weight : bold ;
    }
    .navbar__menu-item a {
        color: #fff;
        font-size: 1.4rem;
        text-transform: uppercase;
    }

    /* Order
    .button1{
        color: #fff;
        background-color: #2c9181;
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 9px;
        padding-bottom: 9px;
       border: 1px solid #2c9181;
        border-radius: 5px;
        font-weight: 900; */

    .hero__title {
        font-size: 3.6rem;
    }
    .hero__list {
        margin-left: 20px;
    }
    .hero-container {
        display: grid;
        align-items: center;
        grid-template-columns: repeat(2, 1fr);

    }

    .hero__subtitle {
        color: #fff;
        /* font-size: 2.8rem; */
    }
    .benefits__list {
        margin-left: 40px;
    }
    .guarantee {
        text-align: center;
    }
    .guarantee h2 {
        font-size: 3rem;
    }
    .order__bottles {
        flex-direction: row;
    }
    .order__text {
        width: 100%;
        max-width: 760px;
        margin: auto;
    }
    .checkout__title {
        font-size: 2.6rem;
    }
    .links__list {
        columns: 2;
        -webkit-columns: 2;
        -moz-columns: 2;
    }
    .footer__copyright {
        text-align: center;
    }
}

/* Desktops, large screens */
@media screen and (min-width: 1025px) {
    .subtitle {
        font-size: 4rem;
    }
    .navbar__logo {
        font-size: 4rem;
    }
    .hero__title {
        font-size: 4.2rem;
    }
}
.Hightlight{
    color:#E0FF47 ;
}
/* .testimonials */
.testim{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: radial-gradient(circle,#00720D 100%);
}

.testimonial-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 20px;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 40px;
        text-align: center;
}

/* This class is defining the styling
for the container element that holds each
testimonial in a testimonial grid. */
.testimonial-container {
        background-color: #ffffff;
        border-radius: 12px;
        padding: 30px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* This class is defining the
styling for the avatar image */
.testimonial-avatar {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        overflow: hidden;
        margin: 0 auto 20px;
}

.testimonial-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
}

.testimonial-text {
        margin-bottom: 20px;
}

.testimonial-name {
        font-size: 20px;
        font-weight: bold;
        margin-bottom: 5px;
        color: #333333;
}

.testimonial-role {
        font-size: 16px;
        color: #666666;
}

/* This media query in CSS that targets
screens with a maximum width of 600 pixels. */
@media screen and (max-width: 600px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

/* New CSS rules for styles that were previously inline */
.primary-color-text {
    color: #E0FF47;
}

.what-is__subtitle {
    color: #1c1e1e;
}

.testim__title {
    text-align: center;
    font-size: 32px;
    padding-top: 30px;
    padding-bottom: 20px;
    color: #fff;
}

.how-it-works__subtitle {
    color: #1c1e1e;
}

.hollywood-secret {
    background-color: #000; /* Assuming a dark background for this section */
}

.hollywood-secret__title {
    font-size: 38px;
    color: #fff;
}

.hollywood-secret__text {
    color: #fff;
    margin-top: 30px;
}

.ingredients__subtitle {
    color: #252323;
}

.benefits__subtitle {
    color: #252323;
}

.verdict__subtitle {
    color: #252323;
}

.order {
    background-color: #E8E8E8;
    margin-top: 0px;
}

.footer__disclaimer {
    text-align: center;
    font-size: 18px;
}

.links {
    background-color: #167803;
}

.hero__fda-image {
    width: 100%;
    max-width: 700px;
    height: auto;
}
body {
    font-family: Arial, sans-serif;
    background: #fff;
    margin: 0;
    padding: 0;
}

.pricing-section {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 30px; /* Increased padding to make the section larger */
    gap: 20px;
    background: #f9f9f9;
}

.pricing-card {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    width: 320px; /* Slightly increased width */
    padding: 25px; /* Slightly increased padding within the card */
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);

}

.pricing-card.popular {
    border: 3px solid green;
}

.pricing-card h2 {
    color: #1c8f36;
    font-size: 26px; /* Slightly increased font size */
    margin-bottom: 8px;
}

.sub-text {
    font-size: 17px; /* Slightly increased font size */
    color: #555;
    margin-bottom: 18px;
}

.pricing-card img {
    width: 130px; /* Slightly increased image size */
    margin: 12px auto;
}

.price span {
    font-size: 36px; /* Slightly increased font size */
    color: #1c8f36;
    font-weight: bold;
}

.price {
    font-size: 20px; /* Slightly increased font size */
    margin: 12px 0;
}

.save-text {
    color: red;
    font-weight: bold;
    margin: 8px 0 18px;
}

.bonus {
    color: #000;
    font-weight: bold;
    background: #f0f0f0;
    display: inline-block;
    padding: 7px 12px;
    border-radius: 5px;
    margin-bottom: 12px;
}

.btn {
    background: #1c8f36;
    color: white;
    font-size: 17px; /* Slightly increased font size */
    border: none;
    padding: 14px 22px;
    border-radius: 30px;
    cursor: pointer;
    width: 100%;
    margin: 12px 0;
}

.btn:hover {
    background: #166d2b;
}

.small-text {
    font-size: 15px; /* Slightly increased font size */
    color: #555;
}

.strike {
    text-decoration: line-through;
    color: #888;
}

.free-ship {
    color: red;
    font-weight: bold;
}

@media (max-width: 768px) {
    .pricing-section {
        flex-direction: column;
        align-items: center;

    }
}

.faq {
    padding: 40px 0;
    text-align: left;
}

.faq-list {
    max-width: 800px;
    margin: 20px auto;
}

.faq-list details {
    margin-bottom: 10px;
}

.faq-list summary {
    list-style: none;
    padding: 10px 0;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.8em; /* Increased font size for the question */
    position: relative;
    color: var(--text-color); /* Ensure the text color is black */
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: '+';
    font-size: 1.5em;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.faq-list details[open] summary::after {
    content: '-';
}

.faq-list details p {
    padding: 10px 0;
    font-size: 1.6em; /* Increased font size for the answer */
    line-height: 1.5;
    color: var(--text-color); /* Ensure the text color is black */
}

.footer__links {
    margin-top: 15px;
    text-align: center;
}

.footer__links a {
    color: var(--text-color); /* Black color (assuming --text-color is set to #000) */
    text-decoration: none; /* No underline */
    margin: 0 10px;
    font-size: 0.8em; /* Adjust size as needed */
}

.footer__links a:hover {
    text-decoration: underline; /* Optional: Add underline on hover */
}