* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Roboto Condensed', sans-serif;
    line-height: 1.6;
    color: #1a2526;
    background-color: #ffffff;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
h1, h2, h3, h4 {
    color: #1a2526;
}
h1 {
    font-size: 3rem;
    font-weight: 600;
}
h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}
p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #4a4a4a;
}
ul {
    list-style: none;
}
a {
    text-decoration: none;
}
.header {
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}
.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}
.logo {
    font-size: 1.8rem;
    font-weight: 600;
    color: #176E83;
}
.nav ul {
    display: flex;
    gap: 20px;
}
.nav ul li a {
    color: #1a2526;
    font-size: 1.1rem;
    transition: color 0.3s;
}
.nav ul li a:hover, .nav ul li a[aria-current="page"] {
    color: #176E83;
}
.header-cta {
    background-color: #176E83;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s;
}
.header-cta:hover {
    background-color: #124f5e;
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}
.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #1a2526;
    transition: all 0.3s;
}
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}
.hero {
    background-color: #ffffff;
    padding: 40px 0 60px;
    margin-top: 40px;
}
.hero .container {
    display: flex;
    align-items: center;
    gap: 40px;
}
.hero-content {
    flex: 1;
}
.hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}
.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}
.hero-buttons {
    display: flex;
    gap: 20px;
}
.cta-button.primary {
    background-color: #176E83;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: background-color 0.3s;
}
.cta-button.primary:hover {
    background-color: #124f5e;
}
.cta-button.secondary {
    background-color: #ffffff;
    color: #176E83;
    padding: 15px 30px;
    border: 2px solid #176E83;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
}
.cta-button.secondary:hover {
    background-color: #176E83;
    color: #ffffff;
}
.hero-image {
    flex: 1;
    text-align: center;
}
.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}
.about, .conclusion {
    padding: 80px 0;
    background-color: #ffffff;
    margin-top: 40px;

}
.how-it-works, .benefits, .why-choose, .order, .faq {
    padding: 80px 0;
    background-color: #EEF7F9;
    margin-top: 40px;

}

.ingredients, .bonuses .reviews {
    padding: 80px 0;
    background-color: #ffffff;
    margin-top: 40px;
}

.guarantee {
    padding: 80px 0;
    background-color: #f8f8f8;
    text-align: center;

}

.guarantee-badge img {
    max-width: 150px;
    height: auto;
    margin: 20px 0;
}

.call-to-action {
    padding: 80px 0;
    background-color: #ffffff;
    text-align: center;
}

.call-to-action .cta-button {
    display: inline-block;
    margin-top: 20px;
}

.bonus img {
    max-width: 300px;
    height: auto;
    margin-bottom: 20px;
}

.bonus h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.ingredient-grid, .bonus-grid, .review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.review, .ingredient, .bonus {
    background-color: #EEF7F9;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.benefit-item, .ingredient-item {
    margin-bottom: 30px;
}
.benefits ul li, .how-it-works ul li, .why-choose ul li {
    font-size: 1.1rem;
    margin-bottom: 15px;
}
.review p {
    font-style: italic;
    margin-bottom: 10px;
}
.review-name {
    color: #176E83;
}
.stars {
    color: #176E83;
    font-size: 1.2rem;
}
.pricing-table {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}
.price {
    font-size: 28px;
    font-weight: bold;
    margin: 10px 0;
  }

.pricing-option {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    text-align: center;
}

.pricing-option.popular {
    border: 2px solid #176E83;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #176E83;
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-option img {
    max-width: 260px;
    height: auto;
    margin-bottom: 15px;
}

.pricing-option h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333333;
}

.pricing-option p {
    font-size: 1.2rem;
    color: #333333;
    margin-bottom: 20px;
}
.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #ffffff;
}
.faq-question {
    font-size: 1.3rem;
    font-weight: 600;
    padding: 15px 0;
    cursor: pointer;
    position: relative;
}
.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    font-size: 1.5rem;
    color: #176E83;
}
.faq-question.active::after {
    content: '−';
}
.faq-answer {
    display: none;
    padding: 0 0 15px;
}
.footer {
    background-color: #333333;
    color: #ffffff;
    padding: 40px 0;
}
.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.footer ul {
    display: flex;
    gap: 20px;
}
.footer ul li a {
    color: #ffffff;
}
.footer ul li a:hover {
    color: #176E83;
}
.footer p{
    color: #fff;
}
@media (max-width: 768px) {
    .header .nav {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        padding: 20px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
    .header .nav.active {
        display: block;
    }
    .offer-image img {
        max-width: 100%;
    }
    .nav ul {
        flex-direction: column;
        gap: 10px;
    }
    .header-cta {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    .pricing-table {
        flex-direction: column;
        align-items: center;
    }
    .footer .container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .footer ul {
        flex-direction: column;
    }
}
@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.8rem;
    }
    .cta-button {
        padding: 10px 20px;
        font-size: 1rem;
    }
}

.add-to-cart {
    background: #ffcc00;
    padding: 12px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    color: #000;
    margin: 10px auto;
    display: inline-block;
    cursor: pointer;
  }
.add-to-cart a {
    color: #000000;
}

  .total {
    font-size: 16px;
    margin-top: 10px;
  }

  .strike {
    text-decoration: line-through;
    color: #777;
    margin-right: 6px;
  }

  .extra-bonus {
    font-size: 14px;
    margin: 5px 0;
  }

  .extra-bonus .check {
    font-size: 16px;
    margin-right: 6px;
  }