.elementor-371 .elementor-element.elementor-element-1e4087c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-4f0b8a0 *//* Base Styles */
:root {
    --primary-color: #4a90e2;
    --secondary-color: #34c759;
    --accent-color: #ff9500;
    --dark-color: #2c3e50;
    --light-color: #f8f9fa;
    --text-color: #333333;
    --light-text: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--light-color);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 17px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    color: var(--dark-color);
}

h2 {
    font-size: 2rem;
    color: var(--dark-color);
}

h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Header Styles */
.main-header {
    background-color: var(--dark-color);
    color: var(--light-text);
    padding: 17px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.desktop-nav ul {
    display: flex;
    gap: 2rem;
}

.desktop-nav a {
    color: var(--light-text);
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.desktop-nav a:hover::after {
    width: 100%;
}

.order-btn {
    background-color: var(--accent-color);
    color: var(--light-text);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
}

.order-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--light-text);
    border-radius: 3px;
    transition: var(--transition);
}

.mobile-nav {
    display: none;
    background-color: var(--dark-color);
    padding: 1rem 0;
    text-align: center;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav a {
    color: var(--light-text);
    font-weight: 600;
    display: block;
    padding: 0.5rem 0;
}

/* Hero Section */
.hero-section {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e7eb 100%);
}

.hero-text {
    text-align: center;
    margin-bottom: 3rem;
}

.hero-text h1 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.hero-text h2 {
    font-size: 1.3rem;
    font-weight: 500;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.hero-media {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.vsl-container {
    flex: 1;
    box-shadow: var(--shadow);
    border-radius: 8px;
    overflow: hidden;
}

.product-showcase {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.product-image {
    max-width: 300px;
    margin: 0 auto 1.5rem;
    transition: transform 0.5s ease;
}

.product-image:hover {
    transform: scale(1.05);
}

.product-description h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.badge {
    height: 40px;
    width: auto;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background-color: #fff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    background-color: var(--light-color);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.benefit-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Ingredients Section */
.ingredients-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e6f7ff 0%, #f0f8ff 100%);
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.ingredient-card {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.ingredient-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.ingredient-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.quality-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.quality-badge {
    height: 60px;
    width: auto;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: #fff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.testimonial-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
}

.testimonial-info h3 {
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
}

.rating {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.verified {
    font-size: 0.8rem;
    color: #777;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.result-image {
    border-radius: 8px;
    width: 100%;
}

.satisfaction-stats {
    display: flex;
    justify-content: space-around;
    text-align: center;
    margin-top: 3rem;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-weight: 600;
}

/* Bonus Section */
.bonus-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff9e6 0%, #fff5e6 100%);
}

.bonuses-container {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.bonus-card {
    flex: 1;
    display: flex;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.bonus-image {
    width: 40%;
    object-fit: cover;
}

.bonus-content {
    padding: 2rem;
    width: 60%;
}

.bonus-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Guarantee Section */
.guarantee-section {
    padding: 80px 0;
    background-color: #fff;
}

.guarantee-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.guarantee-image {
    flex: 1;
    text-align: center;
}

.guarantee-badge {
    max-width: 250px;
}

.guarantee-text {
    flex: 2;
}

.guarantee-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.guarantee-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.g-badge {
    height: 50px;
    width: auto;
}

/* Order Section */
.order-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e6f7ff 0%, #f0f8ff 100%);
}

.packages-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
}

.package-card {
    flex: 1;
    max-width: 300px;
    transition: var(--transition);
    position: relative;
}

.package-card.featured {
    transform: scale(1.05);
    z-index: 2;
}

.package-link {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.package-link:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.package-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.mobile-package {
    display: none;
}

.shipping-notice {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.shipping-notice h3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.shipping-notice p {
    font-style: italic;
    margin-bottom: 0;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #fff;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    cursor: pointer;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.2rem;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1rem;
}

/* Scientific References Section */
.scientific-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e7eb 100%);
}

.scientific-content {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.scientific-text {
    flex: 1;
}

.references-list {
    margin-top: 1.5rem;
    padding-left: 1.5rem;
}

.references-list li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.references-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.scientific-images {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.scientific-image {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

/* Footer Styles */
.main-footer {
    background-color: var(--dark-color);
    color: var(--light-text);
    padding: 60px 0 30px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--light-text);
    font-weight: 600;
}

.disclaimer {
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.5;
}

.disclaimer p {
    margin-bottom: 1rem;
}

/* Media Queries */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .benefits-grid,
    .ingredients-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bonuses-container {
        flex-direction: column;
    }
    
    .guarantee-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .scientific-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-nav.active {
        display: block;
    }
    
    .hero-media {
        flex-direction: column;
    }
    
    .benefits-grid,
    .ingredients-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .satisfaction-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .bonus-card {
        flex-direction: column;
    }
    
    .bonus-image {
        width: 100%;
        height: 200px;
        object-fit: contain;
    }
    
    .bonus-content {
        width: 100%;
    }
    
    .packages-container {
        flex-direction: column;
        align-items: center;
    }
    
    .package-card {
        width: 100%;
        max-width: 350px;
    }
    
    .desktop-package {
        display: none;
    }
    
    .mobile-package {
        display: block;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .section-title {
        margin-bottom: 1.5rem;
    }
    
    .section-subtitle {
        margin-bottom: 2rem;
    }
    
    .guarantee-badges {
        flex-wrap: wrap;
    }
}/* End custom CSS */