.elementor-659 .elementor-element.elementor-element-4787d37{--display:flex;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-659 .elementor-element.elementor-element-e87fc1f{text-align:center;}.elementor-659 .elementor-element.elementor-element-e87fc1f .elementor-heading-title{font-family:"Roboto", Sans-serif;font-size:1px;font-weight:600;}.elementor-659 .elementor-element.elementor-element-3872ff6{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-9f73efa *//* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base Styles */
body {
    font-family: 'Montserrat', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: #0e0b54;
}

ul {
    list-style: none;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #0e0b54;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #ff7500;
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 18px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #0e0b54 0%, #1a1464 100%);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.logo {
    margin-bottom: 20px;
}

.logo img {
    max-height: 80px;
}

.main-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.subtitle {
    font-size: 20px;
    font-weight: 500;
    opacity: 0.9;
    margin-bottom: 30px;
}

/* Top Form Container */
.top-form-container {
    max-width: 400px;
    margin: 30px auto 0;
}

.top-form-container .form-container {
    background-color: rgba(255, 255, 255, 0.95);
}

/* Problem Solution Section */
.problem-solution {
    padding: 60px 0;
    background-color: white;
}

.problem-box, .solution-box {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    background-color: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.problem-content, .solution-content {
    flex: 1;
    padding: 30px;
}

.problem-image, .solution-image {
    flex: 1;
    padding: 20px;
    text-align: center;
}

.problem-image img, .solution-image img {
    max-height: 300px;
    border-radius: 10px;
}

.problem-list li, .solution-list li {
    margin-bottom: 10px;
    font-size: 18px;
    display: flex;
    align-items: center;
}

.problem-list i {
    color: #e74c3c;
    margin-right: 10px;
    font-size: 20px;
}

.solution-list i {
    color: #2ecc71;
    margin-right: 10px;
    font-size: 20px;
}

.problem-content h2, .solution-content h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #0e0b54;
}

/* Benefits Section */
.benefits {
    padding: 60px 0;
    background-color: #f8f8f8;
}

.benefits-text {
    max-width: 800px;
    margin: 0 auto 40px;
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefits-text p {
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 1.7;
    position: relative;
    padding-left: 25px;
}

.benefits-text p:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #ff7500;
    position: absolute;
    left: 0;
    top: 3px;
}

.benefits-text p:last-child {
    margin-bottom: 0;
}

.product-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

.product-image {
    max-height: 300px;
    margin-right: 40px;
}

.product-features {
    display: flex;
    flex-direction: column;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature i {
    font-size: 24px;
    color: #ff7500;
    margin-right: 15px;
}

.feature p {
    font-size: 18px;
    font-weight: 500;
}

/* Ingredients Section */
.ingredients {
    padding: 60px 0;
    background-color: white;
}

.ingredients-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.ingredient-card {
    flex-basis: calc(33.33% - 20px);
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.ingredient-card:hover {
    transform: translateY(-5px);
}

.ingredient-card img {
    max-height: 80px;
    margin-bottom: 15px;
}

.ingredient-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #0e0b54;
}

/* How It Works Section */
.how-it-works {
    padding: 60px 0;
    background-color: #f8f8f8;
}

.steps-container {
    max-width: 900px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #ff7500;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #0e0b54;
}

.step img {
    max-height: 150px;
    margin-left: 20px;
    border-radius: 8px;
}

/* How to Order Section */
.how-to-order {
    padding: 60px 0;
    background-color: white;
}

.order-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.order-step {
    flex-basis: calc(33.33% - 30px);
    text-align: center;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.order-step:hover {
    transform: translateY(-5px);
}

.order-step img {
    max-height: 150px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.order-step h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #0e0b54;
}

.order-step p {
    font-size: 16px;
}

/* Testimonials Section */
.testimonials {
    padding: 60px 0;
    background-color: #f8f8f8;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.testimonial-card {
    flex-basis: calc(33.33% - 30px);
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.testimonial-content {
    padding: 20px;
}

.rating {
    margin-bottom: 15px;
}

.rating img {
    height: 20px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 15px;
    font-size: 16px;
}

.testimonial-author {
    font-weight: 600;
    color: #0e0b54;
}

/* Expert Section */
.expert {
    padding: 60px 0;
    background-color: white;
}

.expert-box {
    display: flex;
    align-items: center;
    background-color: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.expert-image {
    flex: 1;
    padding: 20px;
    text-align: center;
}

.expert-image img {
    max-height: 400px;
    border-radius: 10px;
}

.expert-content {
    flex: 1;
    padding: 30px;
}

.expert-content h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #0e0b54;
}

.expert-content p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.expert-signature {
    margin-top: 30px;
}

.expert-signature p {
    margin-bottom: 5px;
    font-weight: 600;
}

.signature {
    max-width: 150px;
    margin-top: 10px;
}

/* Order Section */
.order {
    padding: 60px 0;
    background-color: #f8f8f8;
}

.order-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.order-info {
    flex-basis: calc(50% - 20px);
    display: flex;
    flex-direction: column;
}

.product-image-large {
    text-align: center;
    margin-bottom: 30px;
}

.product-image-large img {
    max-height: 350px;
}

.order-benefits {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.order-benefits h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #0e0b54;
    text-align: center;
}

.order-benefits ul li {
    margin-bottom: 12px;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.order-benefits ul li i {
    color: #2ecc71;
    margin-right: 10px;
    font-size: 18px;
}

/* FAQ Section */
.faq {
    padding: 60px 0;
    background-color: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #f9f9f9;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f0f0f0;
}

.faq-question h3 {
    font-size: 18px;
    color: #0e0b54;
    font-weight: 600;
}

.faq-toggle {
    color: #ff7500;
    font-size: 18px;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 1000px;
}

.faq-item.active .faq-toggle i {
    transform: rotate(45deg);
}

/* Footer Section */
.footer {
    background-color: #0e0b54;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-height: 60px;
    filter: brightness(0) invert(1);
}

.footer-links {
    margin-bottom: 20px;
}

.footer-link {
    color: white;
    margin: 0 15px;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    opacity: 0.8;
}

.footer-copyright {
    font-size: 14px;
    opacity: 0.8;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .main-title {
        font-size: 30px;
    }
    
    .subtitle {
        font-size: 18px;
    }
    
    .problem-box, .solution-box, .expert-box {
        flex-direction: column;
    }
    
    .problem-image, .solution-image, .expert-image {
        margin-bottom: 20px;
    }
    
    .ingredient-card {
        flex-basis: calc(50% - 15px);
    }
    
    .testimonial-card {
        flex-basis: calc(50% - 15px);
        margin-bottom: 30px;
    }
    
    .order-content {
        flex-direction: column;
    }
    
    .order-info {
        flex-basis: 100%;
        margin-bottom: 30px;
    }
    
    .order-step {
        flex-basis: calc(50% - 15px);
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 26px;
    }
    
    .main-title {
        font-size: 26px;
    }
    
    .subtitle {
        font-size: 16px;
    }
    
    .ingredient-card, .testimonial-card, .order-step {
        flex-basis: 100%;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .step img {
        margin-left: 0;
        margin-top: 15px;
    }
    
    .product-showcase {
        flex-direction: column;
    }
    
    .product-image {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .top-form-container {
        max-width: 100%;
    }
}/* End custom CSS */