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

/* Animation Styles */
.fade-element {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Sticky Welcome Bar */
.sticky-welcome-bar {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: #ffeb3b; /* Yellow background */
    padding: 8px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1100; /* Ensure it's above other elements */
}

.welcome-container {
    width: 600px; /* Fixed width for desktop */
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px; /* Space between text and button */
}

.welcome-text {
    color: #ff0000; /* Red text like in the image */
    font-weight: bold;
    font-size: 18px;
    text-transform: none;
}

.welcome-button {
    display: inline-block;
    background-color: #000; /* Black button */
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s ease;
}

.welcome-button:hover {
    background-color: #333;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .welcome-container {
        width: 100%;
        padding: 0 10px;
        justify-content: center;
        gap: 10px;
    }
    
    .welcome-text {
        font-size: 14px;
    }
    
    .welcome-button {
        padding: 5px 10px;
        font-size: 13px;
    }
    
    /* Mobile-specific play button adjustments */
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-button i {
        font-size: 24px;
    }
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #f0f0f0;
    background-color: #111;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5px 0 20px; /* Reduced top padding */
}

header, main, footer {
    width: 100%;
    max-width: 800px;
    background-color: #222;
}

main {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    padding-bottom: 30px;
    margin-top: 15px; /* Reduced space after welcome bar */
}

header {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    padding: 15px 0;
}

footer {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background-color: #333;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

.container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: #e74c3c;
}

ul {
    list-style-type: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Main content */

/* Header Styles */
.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip-link:focus {
    position: static;
    width: auto;
    height: auto;
    padding: 10px;
    background: #e74c3c;
    color: white;
    text-align: center;
    display: block;
}

.logo-container {
    text-align: center;
}

.logo-container h1 {
    font-size: 26px;
    color: #e74c3c;
    font-weight: 700;
}

/* Hero Section */
.hero-section {
    background-color: #222;
    padding: 40px 0;
    text-align: center;
}

.logo-image-container {
    max-width: 800px;
    width: 100%;
    margin: 0 auto 30px;
    text-align: center;
}

.logo-image {
    width: 250px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Media queries for responsive design */
@media (max-width: 768px) {
    .logo-image {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .logo-image {
        width: 180px;
    }
}

.hero-section h2 {
    color: #e74c3c;
    font-size: 32px;
    margin-bottom: 15px;
}

.text-black {
    color: #fff;
}

.text-gold {
    color: #FFC800;
    font-size: 22px;
    font-weight: 700;
}

.official-store {
    color: #FFC800;
    font-size: 30px;
    font-weight: 700;
}

.highlight {
    color: #FFC800;
    font-weight: 700;
}

.tagline-question {
    color: #FFC800;
    font-size: 27px;
    font-weight: 700;
}

.text-red {
    color: #e74c3c;
    font-size: 36px;
    font-weight: 700;
}

.text-red-product {
    color: #e74c3c;
    font-weight: 700;
}

.tagline {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #f0f0f0;
}

.product-description {
    max-width: 800px;
    margin: 0 auto;
}

.product-image-container {
    max-width: 800px;
    width: 100%;
    margin: 0 auto 30px;
}

.main-product-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    display: block;
    margin: 0 auto;
}

.product-description p {
    margin-bottom: 15px;
    font-size: 20px;
}

/* Benefits Section */
.benefits-section {
    background-color: #333;
    padding: 40px 0;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 900px;
    margin: 0 auto 20px;
}

.benefits-list li {
    position: relative;
    padding: 10px 10px 10px 40px;
    margin-bottom: 5px;
    font-size: 20px;
    background-color: #222;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefits-list li:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 200, 0, 0.3);
}

.benefits-list li::before {
    content: "\2713";
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #ffc800;
    font-weight: bold;
    font-size: 18px;
    background-color: rgba(255, 200, 0, 0.15);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefits-image-container {
    max-width: 800px;
    width: 100%;
    margin: 30px auto 0;
    text-align: center;
}

.benefits-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    display: block;
    margin: 0 auto;
}

/* Video Section */
.video-section {
    background-color: #222;
    padding: 40px 0;
    text-align: center;
}

.video-note {
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 20px;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    aspect-ratio: 16 / 9;
    background-color: #000;
}

.video-container-vertical {
    position: relative;
    width: 100%;
    max-width: 450px;
    margin: 0 auto 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    aspect-ratio: 9 / 16;
    background-color: #000;
}

.testimonial-video {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 10px;
    object-fit: contain;
}

.video-placeholder {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    background-color: rgba(0, 0, 0, 0.3);
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.video-overlay:hover {
    background-color: rgba(44, 44, 44, 0.6);
}

.play-button {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    /* Add box shadow for better visibility */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    /* Ensure no margins are affecting positioning */
    margin: 0;
    padding: 0;
    /* Make sure content is perfectly centered */
    position: relative;
}

.play-button:hover {
    transform: scale(1.1);
    background-color: #e74c3c;
}

/* Custom triangle that will be perfectly centered */
.play-triangle {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 0 15px 25px;
    border-color: transparent transparent transparent #e74c3c;
    /* Absolute positioning to ensure true centering */
    position: absolute;
    top: 50%;
    left: 52%; /* Slightly offset to account for visual weight */
    transform: translate(-50%, -50%);
    /* Remove any margins that could affect positioning */
    margin: 0;
    padding: 0;
    /* Make the triangle stand out more */
    filter: drop-shadow(0 0 2px rgba(255,255,255,0.3));
}

/* Highlights Section */
.highlights-section {
    background-color: #333;
    padding: 40px 0;
    text-align: center;
}

.highlights {
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 15px;
    color: #FFC800;
}

.cta-button {
    margin: 30px 0;
}

.cta-button a {
    display: inline-block;
    background-color: #25d366;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.cta-button a:hover {
    background-color: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

/* Product Details Section */
.product-details-section {
    background-color: #333;
    padding: 60px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-details-section h2 {
    color: #ffffff;
    margin-bottom: 40px;
    font-size: 32px;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
    width: 100%;
    max-width: 1200px;
}

.feature-item {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    background-color: #222;
    border-radius: 10px;
    padding: 30px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    margin: 0 auto;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.feature-icon {
    font-size: 42px;
    color: #e74c3c;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #f0f0f0;
}

.feature-item p {
    color: #c5c5c5;
    line-height: 1.6;
    font-size: 20px;
}

.product-details {
    background-color: #f5f5f5;
    border-radius: 8px;
    padding: 15px;
    margin: 0 auto 20px;
    max-width: 90%;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
}

.product-details ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.product-details li {
    padding: 8px 0;
    color: #333;
    font-size: 16px;
    border-bottom: 1px dashed #ddd;
    position: relative;
    padding-left: 25px;
}

.product-details li:last-child {
    border-bottom: none;
}

.product-details li:before {
    content: "✓";
    color: #e74c3c;
    position: absolute;
    left: 5px;
    font-weight: bold;
}

.original-price {
    text-decoration: line-through;
    color: #888;
    font-size: 20px;
    display: block;
    margin-bottom: 5px;
}

.discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #e74c3c;
    color: white;
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: bold;
    transform: rotate(10deg);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.price-card {
    position: relative;
}

/* Penjelasan Dokter Section */
.penjelasan-dokter-section {
    background-color: #333;
    padding: 50px 0;
    text-align: center;
}

.penjelasan-dokter-section h2 {
    color: #FFC800;
    margin-bottom: 20px;
    font-size: 32px;
}

.penjelasan-dokter-section p {
    margin-bottom: 25px;
    font-size: 20px;
}

.penjelasan-dokter-section .emphasis {
    font-weight: bold;
    color: #e74c3c;
    font-size: 22px;
    margin: 25px 0 15px;
}

.penjelasan-dokter-section h3 {
    font-size: 22px;
    color: #333;
    margin-top: 15px;
}

.penjelasan-dokter-section img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 4px;
    margin: 20px auto;
    display: block;
}

/* Jaga Kesehatan Section */
.jaga-kesehatan-section {
    background-color: #222;
    
}

/* Full-width image styles */
.full-width-image-container {
    width: 100%;
    margin: 15px 0;
}

.full-width-image {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.jaga-kesehatan-section {
    padding: 60px 0;
    text-align: center;
}

.jaga-kesehatan-section h2 {
    color: #FFC800;
    margin-bottom: 15px;
    font-size: 32px;
}

.jaga-kesehatan-section p {
    color: #c5c5c5;
    font-size: 24px;
    margin-bottom: 30px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.emphasis {
    font-weight: bold;
    color: #e74c3c;
    font-size: 22px;
    margin: 25px 0;
    line-height: 1.4;
}

.jaga-kesehatan-section h3 {
    color: #f0f0f0;
    font-size: 24px;
    margin-top: 20px;
}

/* Warning Section */
.warning-section {
    background-color: #222;
    padding: 60px 0;
    text-align: center;
}

.warning-section h2 {
    color: #FFC800;
    margin-bottom: 30px;
    font-size: 28px;
}

.warning-section img {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin: 20px auto;
    display: block;
    border-radius: 4px;
}

/* Contact Section */
.contact-section {
    background-color: #333;
    padding: 60px 0;
    text-align: center;
}

.contact-section h2 {
    color: #FFC800;
    margin-bottom: 15px;
    font-size: 30px;
}

.contact-section p {
    color: #666;
    margin-bottom: 30px;
    font-size: 20px;
}

.contact-section img {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin: 20px auto;
    display: block;
    border-radius: 0;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-bottom: 30px;
    width: 100%;
}

.contact-item {
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    background-color: #222;
    border-radius: 10px;
    padding: 25px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.contact-item i {
    font-size: 30px;
    color: #e74c3c;
    margin-bottom: 15px;
}

.contact-item h3 {
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 18px;
}

.contact-item p {
    color: #d6d6d6;
    font-size: 20px;
}

.contact-item a {
    color: #d6d6d6;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-item a:hover {
    color: #32cf3f;
}

.contact-cta {
    margin-top: 10px;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.5);
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    background-color: #20BD5A;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.5);
}

.whatsapp-button i {
    font-size: 24px;
    margin-right: 10px;
}

/* Product Explanation Section */
.product-explanation-section {
    background-color: #222;
    padding: 60px 0;
    text-align: center;
}

.product-explanation-section h2 {
    color: #FFC800;
    margin-bottom: 15px;
    font-size: 28px;
}

.section-subtitle {
    color: #666;
    margin-bottom: 30px;
    font-size: 24px;
}

.product-explanation-images {
    width: 100%;
    text-align: center;
    padding-bottom: 0px;
}

.product-explanation-images img {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin: 0 auto 20px;
    display: block;
    border-radius: 4px;
}

.product-images-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto 40px;
}

.product-images-grid img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 0px;
}

.product-explanation-cta {
    margin-top: 30px;
}

.product-explanation-cta .cta-button {
    display: inline-block;
    background-color: #25D366; /* WhatsApp green color */
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.5); /* Updated shadow to match WhatsApp green */
    transition: all 0.3s ease;
}

.product-explanation-cta .cta-button:hover {
    background-color: #20BD5A; /* Darker WhatsApp green on hover */
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.5);
}

/* Guarantee Section */
.guarantee-section {
    background-color: #333;
    padding: 40px 0;
    text-align: center;
}

.guarantee-section h2 {
    color: #e74c3c;
    margin-bottom: 20px;
}

.emphasis {
    font-weight: bold;
    font-size: 18px;
    margin: 20px 0;
}

.guarantee-section h3 {
    color: #e74c3c;
    margin-top: 30px;
    font-size: 24px;
}

/* Pricing Section */
.pricing-section {
    background-color: #ffffff;
    padding: 60px 0;
    text-align: center;
}

.pricing-section h2 {
    color: #e74c3c;
    margin-bottom: 30px;
    font-size: 32px;
}

.price-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.price-card {
    width: 100%;
    max-width: 400px;
    background-color: #f8f8f8;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0 auto;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.product-image {
    margin-bottom: 20px;
    text-align: center;
}

.product-image img {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.price-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.price {
    font-size: 28px;
    font-weight: bold;
    color: #e74c3c;
    margin-bottom: 25px;
}

.single-card {
    margin-bottom: 30px;
}

.promo-title {
    color: #e74c3c;
    font-size: 28px;
    margin-bottom: 20px;
}

.promo-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.promo-card {
    flex: 1;
    max-width: 380px;
    background-color: #fff9f9;
    border: 2px solid #e74c3c;
}

/* Media query for mobile devices */
@media (max-width: 768px) {
    .promo-container {
        flex-direction: column;
        align-items: center;
    }
    
    .promo-card {
        margin-bottom: 20px;
    }
}

/* Testimonials Section */
.testimonial-section h2 {
    color: #FFC800; /* Gold color for testimonial heading */
    margin-bottom: 15px;
    font-size: 28px;
}
.testimonials-section {
    background-color: #222;
    padding: 60px 0;
    text-align: center;
}

.testimonials-section h2 {
    color: #FFC800; /* Gold color */
    margin-bottom: 15px;
    font-size: 32px;
}

.section-subtitle {
    font-size: 22px;
    color: #c5c5c5;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 650px;
    margin: 0 auto;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: #333;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    text-align: left;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    margin-bottom: 20px;
    position: relative;
}

.testimonial-content::before {
    content: "\201C";
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 60px;
    color: rgba(231, 76, 60, 0.2);
    font-family: serif;
}

.testimonial-content p {
    font-style: italic;
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 2px solid #e74c3c;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    margin: 0;
    font-size: 16px;
    color: #f0f0f0;
}

.author-info p {
    margin: 0;
    font-size: 14px;
    color: #c5c5c5;
}

/* FAQ Section */
.faq-section h2 {
    color: #FFC800; /* Gold color for FAQ heading */
    margin-bottom: 15px;
    font-size: 28px;
}
.faq-section {
    background-color: #333;
    padding: 40px 0;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #FFC800; /* Gold color */
}

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
}

.faq-question {
    display: block;
    font-weight: bold;
    font-size: 20px;
    color: #ffffff;
    padding: 10px 0;
    position: relative;
    cursor: pointer;
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 10px;
    font-size: 20px;
    color: #e74c3c;
}

.faq-question.active::after {
    content: "-";
}

.faq-answer {
    padding: 10px 0;
    display: none;
}

.faq-answer p {
    color: #c5c5c5;
    font-size: 18px;
}

/* How to Use Section */
.how-to-use-section {
    background-color: #333;
    padding: 10px 0;
    text-align: center;
}

.how-to-use-section h2 {
    color: #FFC800; /* Gold color */
    margin-bottom: 15px;
    font-size: 28px;
}

.usage-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

.step-item {
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    display: flex;
    align-items: flex-start;
    background-color: #222;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: #e74c3c;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    margin-bottom: 10px;
    color: #f0f0f0;
    font-size: 20px;
}

.step-content p {
    color: #c5c5c5;
    line-height: 1.5;
    font-size: 16px;
}

.usage-note {
    background-color: #222;
    border-left: 4px solid #e74c3c;
    padding: 15px 20px;
    text-align: left;
    border-radius: 4px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.usage-note p {
    color: #c5c5c5;
    margin: 0;
    font-size: 20px;
}

.usage-note p strong {
    color: #f0f0f0;
}

/* Shipping Section */
.shipping-section {
    background-color: #222;
    padding: 30px 0;
    text-align: center;
}

.shipping-section h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #FFC800; /* Changed to gold color */
}

.shipping-section .image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.shipping-section .grid-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .shipping-section .image-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer */
footer h2 {
    margin-bottom: 15px;
}

.contact-image {
    margin: 0 auto;
    display: block;
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.contact-name {
    font-size: 24px;
    font-weight: bold;
}

.text-center {
    text-align: center;
}

footer p {
    margin-bottom: 10px;
    font-size: 20px;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    color: #e74c3c;
}

.footer-cta {
    margin-top: 20px;
}

.footer-whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.5);
    transition: all 0.3s ease;
}

.footer-whatsapp-button:hover {
    background-color: #20BD5A;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
    color: white;
}

.footer-whatsapp-button i {
    font-size: 20px;
    margin-right: 8px;
}

/* WhatsApp Floating Button */
.whatsapp-floating {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-floating a {
    display: flex;
    align-items: center;
    background-color: #25D366;
    color: white;
    border-radius: 50px;
    padding: 10px 20px;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.whatsapp-floating a:hover {
    background-color: #128C7E;
    transform: scale(1.05);
}

.whatsapp-floating i {
    font-size: 24px;
    margin-right: 8px;
}

.whatsapp-floating span {
    font-weight: bold;
    font-size: 16px;
}

/* Responsive Adjustments for WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-floating {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-floating span {
        display: none;
    }
    
    .whatsapp-floating a {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        justify-content: center;
        padding: 0;
    }
    
    .whatsapp-floating i {
        margin-right: 0;
        font-size: 24px;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    body {
        padding: 0;
    }

    header, main, footer {
        max-width: 100%;
        border-radius: 0;
    }

    .container {
        padding: 15px;
    }
    
    .hero-section h2 {
        font-size: 24px;
    }
    
    .tagline {
        font-size: 20px;
    }
    
    .benefits-list {
        padding-left: 25px;
    }
    
    .benefits-list li {
        font-size: 20px;
        margin-bottom: 5px;
    }
    
    .product-features {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-item {
        margin-bottom: 20px;
        width: 100%;
        max-width: 320px;
    }
    
    .video-note {
        font-size: 20px;
    }
    
    .testimonial-card {
        min-width: 250px;
    }
}

/* Add a general paragraph style to ensure all paragraphs have 20px font size */
h1, h2, h3, h4, h5, h6 {
    color: #f0f0f0;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
    color: #c5c5c5;
    font-size: 20px;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

/* Disclaimer Section */
.disclaimer-section {
    background-color: #222;
    padding: 30px 0;
}

.disclaimer-content h3 {
    color: #FFC800;
    margin-bottom: 15px;
}

.disclaimer-content p {
    font-size: 14px;
    color: #c5c5c5;
    max-width: 800px;
    margin: 0 auto;
    font-style: italic;
}
