/** Shopify CDN: Minification failed

Line 12:0 Unexpected "<"
Line 146:0 Unexpected "<"
Line 147:0 Comments in CSS use "/* ... */" instead of "//"
Line 155:32 Comments in CSS use "/* ... */" instead of "//"
Line 159:12 Comments in CSS use "/* ... */" instead of "//"
Line 164:12 Comments in CSS use "/* ... */" instead of "//"
Line 164:55 Unterminated string token

**/
<style>

/* Table of Topics Styling */
.contextwrapper {
    background-color: #e8f5e9;
    border-radius: 12px;
    padding: 15px 20px;
    margin: 20px 0;
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
}

.contextwrapper h3 {
    font-size: 2rem;
    color: #0f3f12; /* Dark green */
    margin-bottom: 10px;
}

.contextwrapper a {
    color: #2E7D32; /* Sehatokart green */
    text-decoration: none;
    font-weight: 600;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.contextwrapper a:hover {
    color: #66BB6A;
    text-decoration: underline;
}
/* Section Heading */
h2.highlight {
    font-size: 2rem;
    color: #2E7D32; /* Sehatokart green */
    border-left: 6px solid #2E7D32;
    padding-left: 10px;
    margin-top: 35px;
    margin-bottom: 17px;
    background: linear-gradient(to right, #eafaf1, transparent);
    line-height: 2;
    border-radius: 4px;
}
/* Content box styling */
.section-content {
    background: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.section-content:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.section-content span {
    display: block;
    margin-bottom: 10px;
    font-size: 1rem;
}

/* Highlight key terms */
.highlight-text {
    color: #1B5E20;
    font-weight: bold;
}
  /* FAQ Section */
.faq-section {
    margin: 40px 0;
    padding: 25px;
    background: #f9fdf9;
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.faq-section h2 {
    font-size: 1.9rem;
    color: #2E7D32;
    margin-bottom: 20px;
    text-align: center;
}

.faq {
    margin-bottom: 15px;
    border: 1px solid #d6e9d7;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    transition: all 0.3s ease;
}

.faq summary {
    cursor: pointer;
    padding: 15px 18px;
    font-size: 1.8rem;
    font-weight: 600;
    color: #1B5E20;
    background: #e8f5e9;
    border-bottom: 1px solid #d6e9d7;
    list-style: none;
  display: flex;
    justify-content: space-between;
    align-items: center;
}
  /* Arrow icon */
.faq summary::after {
    content: '▼';
    font-size: 2rem;
    transition: transform 0.3s ease;
  }

.faq[open] summary {
    background: #c8e6c9;
    color: #0f3f12;
}

.faq p {
    padding: 15px 18px;
    margin: 0;
    font-size: 1.4rem;
    line-height: 1.6;
    color: #333;
}

/* Mobile responsive */
@media (max-width: 768px) {
    h2.highlight {
     font-size: 2rem 
    }
    .section-content {
        padding: 12px;
    }
}
<script>
// Accordion FAQ functionality
document.addEventListener('DOMContentLoaded', function() {
    const faqItems = document.querySelectorAll('.faq');
    
    faqItems.forEach(function(item) {
        const summary = item.querySelector('summary');
        
        summary.addEventListener('click', function(e) {
            e.preventDefault(); // Prevent default details behavior
            
            const isCurrentlyOpen = item.hasAttribute('open');
            
            // Close all FAQ items
            faqItems.forEach(function(faq) {
                faq.removeAttribute('open');
            });
            
            // If the clicked item wasn't open, open it
            if (!isCurrentlyOpen) {
                item.setAttribute('open', '');
            }
        });
    });
});
</script>
</style>