/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Thank You Page Styles */
.thank-you-page {
    background: linear-gradient(135deg, #FFF8F0 0%, #F4E4BC 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

.thankyou-container {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 600px;
    width: 90%;
    box-shadow: 0 15px 40px rgba(231, 111, 81, 0.15);
    border: 1px solid rgba(244, 162, 97, 0.3);
    text-align: center;
}

.thankyou-container h1 {
    color: #E76F51;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

.thankyou-details {
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(244, 228, 188, 0.3);
    border-radius: 10px;
}

.important-notice {
    background: linear-gradient(135deg, #FFF8F0 0%, #F4E4BC 60%);
    padding: 1.5rem;
    border-radius: 15px;
    border-right: 4px solid #E76F51;
}

.important-notice h3 {
    color: #E76F51;
    margin-bottom: 1rem;
}

.call-times {
    margin: 1rem 0;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    font-size: 1.1rem;
}

.urgent-note {
    font-weight: 700;
    color: #E76F51;
    margin-top: 1rem;
}

/* Arabic-friendly font stack */
body {
    font-family: 'Segoe UI', 'Tahoma', 'Arial', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #2C1810;
    background-color: #FFF8F0;
    direction: rtl;
    text-align: right;
    font-size: 16px;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2C1810;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3rem);
    line-height: 1.2;
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    line-height: 1.3;
}

h3 {
    font-size: clamp(1.4rem, 2.8vw, 1.8rem);
    line-height: 1.4;
}

p {
    margin-bottom: 1rem;
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.7;
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #E76F51, #F4A261, #E9C46A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #E76F51, #F4A261);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #FFF8F0 0%, #F4E4BC 50%, #E9C46A 100%);
    overflow: hidden;
}

.site-logo {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
}

.logo-image {
    max-width: 112.5px; /* Reduced by 25% from 150px */
    height: auto;
    border-radius: 11px;
}



.hero-bg-parallax {
    position: absolute;
    top: -20%;
    right: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle at 30% 70%, rgba(244, 162, 97, 0.3) 0%, rgba(231, 111, 81, 0.2) 50%, transparent 70%);
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

.hero-text {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(44, 24, 16, 0.1);
}

.hero-cta-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #E76F51, #F4A261);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 8px 25px rgba(231, 111, 81, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: right 0.6s;
}

.hero-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(231, 111, 81, 0.4);
}

.hero-cta-btn:hover::before {
    right: 100%;
}

.hero-image {
    text-align: center;
    position: relative;
}

.product-image {
    max-width: 85%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(231, 111, 81, 0.2);
    margin: 0 auto;
    display: block;
}

.product-image:hover {
    transform: none;
}

@media (min-width: 768px) {
    .product-image {
        max-width: 550px;
    }
}

/* Problems Section */
.problems {
    padding: 5rem 0;
    background: linear-gradient(180deg, #FFF8F0 0%, #F9F1E7 100%);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.problems-image {
    margin-top: 3rem;
}

.problem-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(231, 111, 81, 0.1);
    border: 1px solid rgba(244, 162, 97, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #E76F51, #F4A261);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(231, 111, 81, 0.15);
}

.problem-card:hover::before {
    transform: scaleX(1);
}

.problem-icon {
    margin-bottom: 1.5rem;
}

.problem-card h3 {
    color: #E76F51;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.problem-card p {
    color: #5D4037;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

/* Product Explanation Section */
.product-explanation {
    padding: 5rem 0;
    background: linear-gradient(135deg, #F9F1E7 0%, #FFF8F0 100%);
}

.explanation-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-top: 2rem;
    padding: 0 1.5rem;
}

.explanation-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    margin: 0 auto;
    max-width: 800px;
}

.explanation-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2C1810;
    margin-bottom: 1rem;
}

.highlight-text {
    background: linear-gradient(135deg, #E76F51, #F4A261);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 2.4rem);
    line-height: 1.4;
    margin: 1rem 0;
}

.product-image-small {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    display: block;
    margin: 0 auto;
    padding: 0.5rem 0;
}

@media (min-width: 768px) {
    .product-image-small {
        max-width: 600px;
    }
}

/* Benefits Section */
.benefits {
    padding: 5rem 0;
    background: linear-gradient(180deg, #FFF8F0 0%, #F4E4BC 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 15px 40px rgba(231, 111, 81, 0.1);
    border: 1px solid rgba(244, 162, 97, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(231, 111, 81, 0.15);
}

.benefit-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.benefit-card p {
    color: #2C1810;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Ingredients Section */
.ingredients {
    padding: 6rem 0;
    position: relative;
    background: linear-gradient(135deg, #2C1810 0%, #5D4037 50%, #8D6E63 100%);
    overflow: hidden;
}

.ingredients-bg-parallax {
    position: absolute;
    top: -20%;
    right: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle at 70% 30%, rgba(244, 162, 97, 0.1) 0%, rgba(231, 111, 81, 0.05) 50%, transparent 70%);
    z-index: 1;
}

.ingredients .container {
    position: relative;
    z-index: 2;
}

.ingredients .section-title {
    color: #F4A261;
    background: linear-gradient(135deg, #F4A261, #E9C46A, #F4A261);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    justify-items: center;
}

.ingredient-hex {
    position: relative;
    transition: transform 0.3s ease;
}

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

.hex-shape {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hex-content {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
}

.steps-image {
    margin: 0 auto;
    max-width: 100%;
    padding: 0 1rem;
}

/* Usage Steps Section */
.usage-steps {
    padding: 2rem 0 5rem;
    background: linear-gradient(180deg, #FFF8F0 0%, #F9F1E7 100%);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(231, 111, 81, 0.1);
    border: 1px solid rgba(244, 162, 97, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(231, 111, 81, 0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #E76F51, #F4A261);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(231, 111, 81, 0.3);
}

.step-content h3 {
    color: #2C1810;
    font-size: 1.2rem;
    line-height: 1.5;
}

/* Guarantee Section */
.guarantee {
    padding: 5rem 0;
    background: linear-gradient(135deg, #F4E4BC 0%, #E9C46A 50%, #F4A261 100%);
}

.guarantee-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.guarantee-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2C1810;
    margin-bottom: 1.5rem;
}

.guarantee-promise {
    background: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid #E76F51;
    font-weight: 700;
    color: #E76F51;
    margin: 2rem 0;
}

.guarantee-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.guarantee-badge span {
    font-weight: 700;
    color: #2C1810;
    font-size: 1.1rem;
}

/* Order Form Section */
.cta-order-form {
    padding: 5rem 0;
    background: linear-gradient(180deg, #2C1810 0%, #5D4037 100%);
    color: white;
}

.cta-order-form h2 {
    text-align: center;
    color: #F4A261;
    margin-bottom: 1rem;
}

.cta-subtitle {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #E9C46A;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-price {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #F4A261;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(244, 162, 97, 0.1);
    border-radius: 15px;
    border: 2px solid #F4A261;
}

.delivery-pricing {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(233, 196, 106, 0.1);
    border-radius: 10px;
}

.old-price {
    text-decoration: line-through;
    color: #8D6E63;
}

.free-delivery {
    color: #4CAF50;
    font-weight: 700;
}

.cta-offers {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.offer-card {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(244, 162, 97, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.offer-card:hover,
.offer-card.selected-offer {
    border-color: #F4A261;
    background: rgba(244, 162, 97, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244, 162, 97, 0.2);
}

.popular-badge {
    position: absolute;
    top: -15.3px;
    right: 20px;
    background: linear-gradient(135deg, #E76F51, #F4A261);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
}

.offer-card label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    width: 100%;
}

.offer-card input[type="radio"] {
    margin-top: 0.2rem;
    transform: scale(1.2);
}

.offer-title {
    font-weight: 700;
    color: #F4A261;
    font-size: 1.1rem;
    line-height: 1.4;
}

.cta-fields {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cta-fields input {
    padding: 1rem 1.5rem;
    border: 2px solid rgba(244, 162, 97, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    color: #2C1810;
    transition: all 0.3s ease;
    text-align: right;
    direction: rtl;
}

.cta-fields input:focus {
    outline: none;
    border-color: #F4A261;
    box-shadow: 0 0 0 3px rgba(244, 162, 97, 0.2);
}

.cta-fields input::placeholder {
    color: #8D6E63;
    text-align: right;
}

.confirmation-note {
    background: rgba(244, 162, 97, 0.1);
    border: 1px solid #F4A261;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 2rem;
    text-align: center;
}

.confirmation-note p {
    color: #E9C46A;
    font-size: 0.9rem;
    margin: 0;
}

#submitBtn {
    width: 100%;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, #E76F51, #F4A261);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(231, 111, 81, 0.3);
}

#submitBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(231, 111, 81, 0.4);
}

#submitBtn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Footer */
.footer {
    background: #2C1810;
    color: #E9C46A;
    text-align: center;
    padding: 2rem 0;
}

.footer p {
    margin: 0;
    font-size: 0.9rem;
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Reviews Section */
.reviews {
    padding: 4rem 0;
    background: linear-gradient(135deg, #FFF8F0 0%, #F4E4BC 100%);
    position: relative;
    overflow: hidden;
}

.reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40" fill="none"><path d="M20 4L23.5 16.5H36.5L26 24.5L30 37L20 30L10 37L14 24.5L3.5 16.5H16.5L20 4Z" fill="%23F4A26133"/></svg>');
    opacity: 0.1;
    z-index: 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
    z-index: 1;
}

.review-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid #E76F51;
    position: relative;
    overflow: hidden;
}

.review-card::after {
    content: '"';
    position: absolute;
    bottom: -20px;
    right: 20px;
    font-size: 120px;
    color: rgba(231, 111, 81, 0.1);
    font-family: serif;
    line-height: 1;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}


.reviewer-name {
    color: #2A9D8F;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.review-text {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* FAQs Section */
.faqs {
    padding: 4rem 0;
    background-color: #FFF8F0;
}

.faq-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.faq-item {
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-right: 3px solid #E76F51;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.faq-question {
    color: #2A9D8F;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    position: relative;
    padding-right: 1.5rem;
}

.faq-answer {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        min-height: 80vh;
        padding: 2rem 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text {
        order: 2;
    }
    
    .hero-image {
        order: 1;
    }
    
    .explanation-content {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }
    
    .explanation-image {
        order: -1;
        margin-bottom: 0;
    }
    
    .problems-grid,
    .benefits-grid,
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .ingredients-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 2rem;
    }
    
    .section-title {
        margin-bottom: 2rem;
    }
    
    .hero-cta-btn {
        padding: 0.8rem 2rem;
        font-size: 1.1rem;
    }
    
    .cta-price {
        font-size: 1.5rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 10px;
    }
    
    .review-card {
        padding: 1.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero {
        min-height: 70vh;
    }
    
    .logo-image {
        max-width: 90px; /* Further reduced for mobile */
    }
    
    .thankyou-container {
        padding: 1.5rem;
        width: 95%;
    }
    
    .thankyou-container h1 {
        font-size: 1.8rem;
    }
    
    h1 {
        font-size: 2.6rem;
    }
    
    h2 {
        font-size: 2.7rem;
    }
    
    h3 {
        font-size: 1.8rem;
    }
    
    /* Keep ingredients title at its original size */
    #ingredients-title {
        font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    }
    
    .highlight-text {
        font-size: 2.5rem;
        line-height: 1.3;
        margin-bottom: 0;
    }
    
    .explanation-text p {
        margin-bottom: 0.5rem;
    }
    
    .problem-card,
    .benefit-card,
    .step-card {
        padding: 1.5rem;
    }
    
    .ingredients-grid {
        grid-template-columns: 1fr;
    }
    
    .hex-content span {
        font-size: 0.8rem;
    }
    
    .offer-card {
        padding: 1rem;
    }
    
    .cta-fields input {
        padding: 0.8rem 1rem;
    }
    
    .product-image-small,
    .product-image,
    .steps-image {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .faq-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-item {
        padding: 1.2rem;
    }
    
    .faq-question {
        font-size: 1.1rem;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero-cta-btn,
    #submitBtn {
        border: 2px solid #2C1810;
    }
    
    .problem-card,
    .benefit-card,
    .step-card {
        border: 2px solid #2C1810;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-bg-parallax,
    .ingredients-bg-parallax {
        transform: none !important;
    }
}

/* Print styles */
@media print {
    .hero-bg-parallax,
    .ingredients-bg-parallax {
        display: none;
    }
    
    .hero,
    .problems,
    .benefits,
    .ingredients,
    .usage-steps,
    .guarantee {
        background: white !important;
        color: black !important;
    }
    
    .cta-order-form {
        display: none;
    }
}