body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}
.sticky-elevator-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #1a202c; /* Darker background for contrast */
    color: white;
    padding: 8px 0;
    text-align: center;
    z-index: 1000;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
}
.sticky-elevator-bar.show {
    transform: translateY(0);
}
.hero-banner {
    background-color: #e2e8f0; /* Light gray background */
    /*background-image: url('https://placehold.co/1920x600/a0aec0/ffffff?text=Wholesale+Kratom+Hero'); !* Placeholder image *!*/
    /*background-size: cover;*/
    /*background-position: center;*/
    color: #2d3748;
    text-align: center;
    padding: 100px 20px;
    position: relative;
}
.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7); /* Semi-transparent overlay */
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 90%;
    margin: 0 auto;
}
.form-section {
    background-color: #f7fafc; /* Lighter gray for form section */
}
.product-carousel-container {
    overflow: hidden; /* Ensures carousel content stays within bounds */
}
.product-carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.product-card {
    flex: 0 0 auto;
    width: 280px; /* Fixed width for carousel items */
    margin-right: 20px;
    background-color: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.quality-assurance-section {
    background-color: #edf2f7; /* Another light gray */
}
.faq-accordion .accordion-header {
    cursor: pointer;
    padding: 16px;
    background-color: #e2e8f0;
    border-radius: 8px;
    margin-bottom: 8px;
    transition: background-color 0.3s ease;
}
.faq-accordion .accordion-header:hover {
    background-color: #cbd5e0;
}
.faq-accordion .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    background-color: #f7fafc;
    border-radius: 8px;

    .description {
        padding: 16px;
    }
}
.faq-accordion .accordion-content.active {
    max-height: 200px; /* Adjust as needed */
}
.cta-banner {
    background-color: #48bb78; /* Green background */
    color: white;
    text-align: center;
}
.section-header-underline {
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
}

@media (min-width: 480px) {
    .section-header-underline::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 50px; /* Adjust as needed */
        height: 3px;
        background-color: #5EA201; /* Green color */
        border-radius: 2px;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-banner {
        padding: 60px 15px;
    }
    .product-card {
        width: 250px;
    }
}
@media (max-width: 640px) {
    .product-card {
        width: 90%; /* Adjust for smaller screens */
        margin-left: auto;
        margin-right: auto;
    }
}
