additional sections

D David Veksler · 1 year ago a02f2b0c80eefacbdbe896604a0d2f2f59e9691b
Parent: 27fadaf16

1 file changed +1541 −917

Diff

diff --git a/cooking.html b/cooking.html
index 7bb9acb..5c920e1 100644
--- a/cooking.html
+++ b/cooking.html
@@ -3,1042 +3,1666 @@
 <head>
     <meta charset="UTF-8">
     <meta name="viewport" content="width=device-width, initial-scale=1.0">
-    <title>Comprehensive Guide to Cooking</title>
+    <title>Interactive Culinary Cheatsheet</title>
+    <!-- Bootstrap CSS -->
+    <link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
+    <!-- Bootstrap Icons -->
+    <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.css">
+    <!-- Google Fonts -->
+    <link rel="preconnect" href="https://fonts.googleapis.com">
+    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
+    <link href="https://fonts.googleapis.com/css2?family=Oswald:wght@400;700&family=Montserrat:wght@400;600;700&family=Inter:wght@400;600&display=swap" rel="stylesheet">
+
     <style>
-        body { 
-            font-family: Arial, sans-serif; 
-            line-height: 1.6; 
-            margin: 20px; 
-            padding: 0;
-            max-width: 900px;
-            margin-left: auto;
-            margin-right: auto;
+        :root {
+            --font-display: 'Oswald', sans-serif;
+            --font-heading: 'Montserrat', sans-serif;
+            --font-body: 'Inter', sans-serif;
+
+            --color-primary: #2c3e50; /* Deep Indigo/Navy */
+            --color-secondary: #45B8AC; /* Vibrant Teal */
+            --color-accent: #e67e22; /* Warm Coral/Orange */
+            --color-highlight: #f39c12; /* Bright Yellow/Orange */
+
+            --color-background-page: #ecf0f1; /* Very Light Grey */
+            --color-background-card: #ffffff; /* White */
+            --color-background-header-alt: #34495e; /* Slightly Lighter Navy */
+
+            --text-color-body: #34495e; /* Dark Grey/Off-Black */
+            --text-color-light: #f8f9fa;
+            --text-color-muted: #7f8c8d;
+
+            --border-radius-main: 0.5rem;
+            --shadow-soft: 0 4px 12px rgba(0,0,0,0.08);
+            --shadow-medium: 0 8px 25px rgba(0,0,0,0.1);
+            --transition-smooth: all 0.3s ease-in-out;
+        }
+
+        body {
+            font-family: var(--font-body);
+            background-color: var(--color-background-page);
+            color: var(--text-color-body);
+            line-height: 1.7;
+            overflow-x: hidden; /* Prevent horizontal scroll from animations */
+        }
+
+        /* --- Typography --- */
+        h1, h2, .display-font {
+            font-family: var(--font-display);
+            font-weight: 700;
+            color: var(--color-primary);
+            letter-spacing: 0.5px;
+        }
+        h3, h4, h5, .heading-font {
+            font-family: var(--font-heading);
+            font-weight: 600;
+            color: var(--color-primary);
+        }
+
+        /* --- Hero Section --- */
+        .hero-section {
+            background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-background-header-alt) 100%);
+            color: var(--text-color-light);
+            padding: 4rem 1rem;
+            margin-bottom: 3rem;
+            border-bottom: 5px solid var(--color-secondary);
+            text-align: center;
+        }
+        .hero-section h1 {
+            font-size: 3.5rem;
+            color: var(--text-color-light);
+            margin-bottom: 0.5rem;
+            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
+        }
+        .hero-section .lead {
+            font-family: var(--font-heading);
+            font-size: 1.25rem;
+            color: var(--text-color-light-muted, #bdc3c7); /* Lighter muted for hero */
+            max-width: 700px;
+            margin: 0 auto 1rem auto;
+        }
+
+        /* --- Main Section Styling --- */
+        .main-section {
+            background-color: var(--color-background-card);
+            padding: 1.5rem 2rem;
+            margin-bottom: 2.5rem;
+            border-radius: var(--border-radius-main);
+            box-shadow: var(--shadow-medium);
+            border-left: 5px solid var(--color-secondary);
+        }
+        .main-section-header {
+            display: flex;
+            justify-content: space-between;
+            align-items: center;
+            margin-bottom: 1.5rem;
         }
-        h1, h2, h3, h4, h5 { 
-            margin-top: 1.5em; 
-            margin-bottom: 0.5em; 
-            color: #333;
+        .main-section-header h2 {
+            font-size: 2.5rem;
+            margin: 0;
+            color: var(--color-primary);
         }
-        h1 { font-size: 2.4em; text-align: center; border-bottom: 2px solid #eee; padding-bottom: 0.5em;}
-        h2 { font-size: 2em; border-bottom: 1px solid #eee; padding-bottom: 0.3em;}
-        h3 { font-size: 1.6em; }
-        h4 { font-size: 1.3em; }
-        h5 { font-size: 1.1em; font-style: italic; color: #555;}
-        ul, ol { 
-            margin-left: 20px; 
-            padding-left: 20px;
+        .main-section-header h2 .bi {
+            color: var(--color-secondary);
+            margin-right: 0.5rem;
+            vertical-align: middle; /* Aligns icon nicely with large text */
+            font-size: 2.2rem;
         }
-        li { 
-            margin-bottom: 0.7em; 
+        .main-section-controls .btn {
+            font-family: var(--font-heading);
+            background-color: var(--color-accent);
+            border-color: var(--color-accent);
+            color: var(--text-color-light);
+            padding: 0.5rem 1rem;
+            font-size: 0.9rem;
+            transition: var(--transition-smooth);
         }
-        p {
-            margin-bottom: 1em;
+        .main-section-controls .btn:hover {
+            background-color: var(--color-highlight);
+            border-color: var(--color-highlight);
+            transform: translateY(-2px);
         }
-        strong { 
-            font-weight: bold; 
+         .main-section-controls .btn .bi {
+            margin-right: 0.3em;
         }
-        em { 
-            font-style: italic; 
+
+        /* --- Collapsible Item Styling --- */
+        .collapsible-item {
+            background-color: #fdfdfd; /* Slightly off-white for depth */
+            margin-bottom: 1rem;
+            border: 1px solid #e0e0e0;
+            border-radius: calc(var(--border-radius-main) - 2px);
+            box-shadow: var(--shadow-soft);
+            overflow: hidden; /* Important for max-height transition */
+        }
+
+        .collapsible-header {
+            display: flex;
+            justify-content: space-between;
+            align-items: center;
+            padding: 1rem 1.25rem;
+            cursor: pointer;
+            background-color: var(--color-background-card);
+            transition: background-color 0.2s ease;
+            border-bottom: 1px solid transparent; /* Placeholder for when open */
+        }
+        .collapsible-header:hover {
+            background-color: #f5f7fa;
+        }
+        .collapsible-item.is-open > .collapsible-header {
+            background-color: var(--color-secondary); /* Highlight when open */
+            border-bottom-color: var(--color-primary); /* Darker border when open */
         }
-        dt { 
-            font-weight: bold; 
-            margin-top: 1em; 
-            color: #444;
+         .collapsible-item.is-open > .collapsible-header .collapsible-title,
+         .collapsible-item.is-open > .collapsible-header .collapsible-icon-main,
+         .collapsible-item.is-open > .collapsible-header .collapsible-teaser {
+            color: var(--text-color-light); /* White text on colored header */
+        }
+        .collapsible-item.is-open > .collapsible-header .collapsible-icon-toggle {
+            color: var(--text-color-light);
+        }
+
+
+        .collapsible-title-group {
+            display: flex;
+            align-items: center;
         }
-        dd { 
-            margin-left: 20px; 
-            margin-bottom: 0.8em; 
+        .collapsible-icon-main {
+            font-size: 1.5rem;
+            color: var(--color-accent);
+            margin-right: 0.75rem;
+            transition: var(--transition-smooth);
+        }
+        .collapsible-title {
+            font-family: var(--font-heading);
+            font-size: 1.25rem;
+            font-weight: 600;
+            margin: 0;
+            color: var(--color-primary);
+            transition: var(--transition-smooth);
+        }
+        .collapsible-teaser {
+            font-size: 0.85rem;
+            color: var(--text-color-muted);
+            margin-left: 1rem; /* Adjust as needed if icon-main is present */
+            font-style: italic;
+            display: none; /* Hidden by default, shown for collapsed items if desired */
+        }
+        .collapsible-item:not(.is-open) .collapsible-teaser { /* Example to show teaser when collapsed */
+            /* display: inline; */ /* Uncomment to show teaser */
+        }
+
+        .collapsible-icon-toggle {
+            font-size: 1.5rem;
+            color: var(--color-primary);
+            transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55); /* Smooth, bouncy transform */
+        }
+        .collapsible-item.is-open .collapsible-icon-toggle {
+            transform: rotate(180deg);
+        }
+
+        .collapsible-content {
+            max-height: 0;
+            overflow: hidden;
+            padding: 0 1.25rem;
+            background-color: var(--color-background-card);
+            transition: max-height 0.5s cubic-bezier(0.25, 0.1, 0.25, 1),
+                        padding 0.5s cubic-bezier(0.25, 0.1, 0.25, 1),
+                        opacity 0.5s ease-in-out;
+            opacity: 0;
+            visibility: hidden;
         }
+        .collapsible-item.is-open .collapsible-content {
+            max-height: 3000px; /* Adjust if content is very long */
+            padding: 1.5rem 1.25rem;
+            opacity: 1;
+            visibility: visible;
+            border-top: 1px solid #e0e0e0;
+        }
+        .collapsible-content dt { font-weight: bold; color: var(--color-primary); margin-top: 1em; }
+        .collapsible-content dd { margin-left: 1.5em; margin-bottom: 0.75em; }
+
+        /* --- Special Callout Blocks --- */
+        .callout {
+            padding: 1rem 1.25rem;
+            margin: 1.5rem 0;
+            border-left-width: 5px;
+            border-left-style: solid;
+            border-radius: var(--border-radius-main);
+            position: relative;
+            overflow: hidden; /* For pseudo-elements */
+        }
+        .callout::before { /* Decorative icon background */
+            font-family: "bootstrap-icons";
+            position: absolute;
+            top: 50%;
+            right: 10px;
+            transform: translateY(-50%) rotate(-15deg);
+            font-size: 4rem;
+            opacity: 0.08;
+            z-index: 0;
+        }
+        .callout-content {
+            position: relative; /* To be above pseudo-element */
+            z-index: 1;
+        }
+        .callout h5 {
+            font-family: var(--font-heading);
+            font-weight: 700;
+            margin-top: 0;
+            margin-bottom: 0.5rem;
+            display: flex;
+            align-items: center;
+        }
+        .callout h5 .bi {
+            font-size: 1.2em;
+            margin-right: 0.5em;
+        }
+
         .pro-tip {
-            background-color: #e6f7ff;
-            border-left: 4px solid #007bff;
-            padding: 10px;
-            margin: 1em 0;
+            border-left-color: var(--color-highlight);
+            background-color: #fff8e1; /* Light yellow */
+            color: #6d4c41;
         }
+        .pro-tip::before { content: "\F410"; color: var(--color-highlight); } /* lightbulb */
+        .pro-tip h5 { color: var(--color-highlight); }
+
         .practice-drill {
-            background-color: #f0f0f0;
-            border-left: 4px solid #5cb85c;
-            padding: 10px;
-            margin: 1em 0;
+            border-left-color: var(--color-secondary);
+            background-color: #e0f2f1; /* Light teal */
+            color: #004d40;
         }
-        .troubleshooting-item strong { /* For "Why is X wrong?" */
+        .practice-drill::before { content: "\F402"; color: var(--color-secondary); } /* joystick */
+        .practice-drill h5 { color: var(--color-secondary); }
+
+        .troubleshooting-item {
+            border-left-color: var(--color-accent);
+            background-color: #fff3e0; /* Light orange */
+            color: #bf360c;
+            padding: 0.75rem 1rem;
+        }
+        .troubleshooting-item::before { content: "\F518"; color: var(--color-accent); } /* question-lg */
+        .troubleshooting-item strong { /* The question text */
+            font-family: var(--font-heading);
+            font-weight: 600;
+            color: var(--color-accent);
             display: block;
             margin-bottom: 0.3em;
-            color: #d9534f;
         }
+        .troubleshooting-item strong .bi { margin-right: 0.3em; }
+
+        /* --- Styled Lists --- */
+        .styled-list {
+            list-style: none;
+            padding-left: 0;
+        }
+        .styled-list li {
+            padding-left: 2em;
+            position: relative;
+            margin-bottom: 0.5em;
+        }
+        .styled-list li::before {
+            content: "\F280"; /* bi-check-circle-fill or other */
+            font-family: "bootstrap-icons";
+            color: var(--color-secondary);
+            position: absolute;
+            left: 0;
+            top: 2px; /* Adjust for alignment */
+            font-size: 1.1em;
+        }
+
+        /* Footer */
+        .footer {
+            text-align: center;
+            padding: 2rem;
+            background-color: var(--color-background-header-alt);
+            color: var(--text-color-muted);
+            font-size: 0.9rem;
+            margin-top: 3rem;
+        }
+        .footer p { margin-bottom: 0.25rem;}
+        .footer a { color: var(--color-secondary); text-decoration: none; }
+        .footer a:hover { color: var(--color-highlight); text-decoration: underline;}
+
     </style>
 </head>
 <body>
 
-    <h1>A Comprehensive Guide to Cooking</h1>
-
-    <section id="introduction">
-        <h2>Introduction</h2>
-        <p>Welcome to your comprehensive guide to cooking! This journey is designed to take you from the simplest of tasks to a confident command of the kitchen. Cooking is more than just preparing food; it's an act of creation, a way to nourish ourselves and others, a path to explore cultures, and a playground for experimentation. It's about the joy of transforming simple ingredients into something delicious and satisfying.</p>
-
-        <h3>How to Use This Guide:</h3>
-        <p>This guide is structured to build your knowledge progressively.</p>
-        <ul>
-            <li><strong>Beginners:</strong> Start from Part 1 and move sequentially. Don't feel rushed; take your time to understand and practice each concept.</li>
-            <li><strong>Intermediate Cooks:</strong> You might be familiar with some foundational concepts. Feel free to jump to specific techniques in Part 2 you wish to refine or explore new cooking styles in Part 3 to expand your repertoire.</li>
-        </ul>
-        <p>The key is to be curious, patient with yourself, and most importantly, to have fun! Let's begin.</p>
-    </section>
-
-    <section id="part1">
-        <h2>Part 1: Culinary Foundations (Building Blocks)</h2>
-        <p>Before you can create masterpieces, you need to understand the basics. This section covers the essential tools, ingredients, safety practices, and knowledge that form the bedrock of good cooking.</p>
-
-        <h3>Essential Equipment: Must-Haves vs. Nice-to-Haves, Care Tips</h3>
-        <p>Equipping your kitchen doesn't mean buying every gadget you see. Start with the essentials and gradually add items as your skills and interests grow.</p>
-
-        <h4>Must-Haves:</h4>
-        <ul>
-            <li><strong>Chef's Knife (8-10 inch):</strong> Your most important tool. Invest in a good quality one. It's versatile for chopping, slicing, and dicing.
-                <br><em>Care:</em> Keep it sharp. Hand wash and dry immediately to prevent rust and dulling. Store in a knife block, on a magnetic strip, or with a blade guard.</li>
-            <li><strong>Paring Knife:</strong> For smaller, more intricate tasks like peeling, trimming, and coring.
-                <br><em>Care:</em> Same as the chef's knife.</li>
-            <li><strong>Cutting Board(s):</strong> At least two – one for raw meats/poultry/fish and another for produce/ready-to-eat foods to prevent cross-contamination. Wood or plastic are common.
-                <br><em>Care:</em> Wash thoroughly with hot, soapy water after each use. Sanitize regularly, especially after contact with raw meat.</li>
-            <li><strong>Pots and Pans:</strong>
-                <ul>
-                    <li><strong>Saucepan (2-3 quart with lid):</strong> For sauces, boiling water for pasta or vegetables, reheating soups.</li>
-                    <li><strong>Frying Pan/Skillet (10-12 inch, non-stick and/or stainless steel/cast iron):</strong> For sautéing, frying, searing. A non-stick is great for eggs, while stainless steel or cast iron excels at searing.</li>
-                    <li><strong>Stockpot/Large Pot (6-8 quart with lid):</strong> For stocks, soups, stews, and boiling larger quantities of pasta.</li>
-                </ul>
-                <em>Care:</em> For non-stick, avoid metal utensils and high heat. For stainless steel, don't be afraid to use some elbow grease for cleaning. Cast iron requires special seasoning and care (avoid soap for cleaning, dry thoroughly, and oil lightly).
-            </li>
-            <li><strong>Mixing Bowls:</strong> A set of various sizes for mixing ingredients, making salads, etc. Glass or stainless steel are durable.
-                <br><em>Care:</em> Easy to clean with soap and water.</li>
-            <li><strong>Measuring Cups & Spoons:</strong> Essential for accurate recipes, especially in baking. Have sets for both dry and liquid ingredients.
-                <br><em>Care:</em> Wash after use.</li>
-            <li><strong>Colander/Strainer:</strong> For draining pasta, washing vegetables.
-                <br><em>Care:</em> Ensure all food particles are removed before storing.</li>
-            <li><strong>Basic Utensils:</strong>
-                <ul>
-                    <li><strong>Wooden Spoons:</strong> Versatile for stirring, won't scratch non-stick pans.</li>
-                    <li><strong>Spatulas (Silicone/Rubber & Metal):</strong> Silicone for scraping bowls and non-stick pans; metal for turning and lifting.</li>
-                    <li><strong>Whisk:</strong> For beating eggs, making sauces, and incorporating air.</li>
-                    <li><strong>Ladle:</strong> For serving soups and stews.</li>
-                    <li><strong>Tongs:</strong> For turning, gripping, and serving food.</li>
-                </ul>
-            </li>
-            <li><strong>Oven Thermometer:</strong> Ovens can be inaccurate; an oven thermometer ensures correct baking/roasting temperatures.
-                <br><em>Care:</em> Wipe clean.</li>
-            <li><strong>Meat Thermometer:</strong> Crucial for food safety and perfectly cooked meat.
-                <br><em>Care:</em> Clean the probe thoroughly after each use.</li>
-        </ul>
-
-        <h4>Nice-to-Haves (Consider as you progress):</h4>
-        <ul>
-            <li><strong>Dutch Oven/Cocotte:</strong> A heavy, lidded pot (often cast iron) excellent for braises, stews, soups, and even bread baking.</li>
-            <li><strong>Roasting Pan:</strong> For roasting meats and vegetables.</li>
-            <li><strong>Baking Sheets:</strong> For cookies, roasting vegetables, sheet-pan dinners.</li>
-            <li><strong>Grater (Box or Microplane):</strong> For cheese, vegetables, citrus zest. A microplane is excellent for fine zesting and grating hard cheeses.</li>
-            <li><strong>Blender (Countertop or Immersion):</strong> For soups, smoothies, sauces. An immersion blender is great for blending directly in the pot.</li>
-            <li><strong>Food Processor:</strong> For chopping, slicing, shredding, making doughs and sauces.</li>
-            <li><strong>Stand Mixer:</strong> A big help for frequent bakers.</li>
-            <li><strong>Mortar and Pestle:</strong> For grinding spices and making pastes, releasing maximum flavor.</li>
-        </ul>
-
-        <h3>Pantry Essentials: Building a Versatile Pantry</h3>
-        <p>A well-stocked pantry is the secret weapon of a good cook. It means you're always ready to whip up a meal without a last-minute dash to the store.</p>
-        <h4>Spices & Herbs (Dried):</h4> Store in airtight containers away from heat and light.
-        <ul>
-            <li>Salt (Kosher salt for cooking, sea salt for finishing)</li>
-            <li>Black Peppercorns (with a grinder)</li>
-            <li>Garlic Powder</li>
-            <li>Onion Powder</li>
-            <li>Dried Oregano</li>
-            <li>Dried Basil</li>
-            <li>Dried Thyme</li>
-            <li>Cumin</li>
-            <li>Coriander</li>
-            <li>Paprika (Sweet and/or Smoked)</li>
-            <li>Red Pepper Flakes</li>
-            <li>Bay Leaves</li>
-            <li>Cinnamon</li>
-            <li>Nutmeg</li>
-        </ul>
-        <h4>Oils & Vinegars:</h4>
-        <ul>
-            <li><strong>Olive Oil:</strong> Extra virgin for dressings and finishing; regular for general cooking.</li>
-            <li><strong>Neutral Oil:</strong> Canola, vegetable, grapeseed, or avocado oil for high-heat cooking like searing and stir-frying.</li>
-            <li><strong>Vinegars:</strong> Apple Cider Vinegar, Red Wine Vinegar, White Wine Vinegar, Balsamic Vinegar (good quality for finishing)</li>
-        </ul>
-        <h4>Canned & Jarred Goods:</h4>
-        <ul>
-            <li>Tomatoes (diced, crushed, whole, paste)</li>
-            <li>Beans (chickpeas, black beans, kidney beans, cannellini)</li>
-            <li>Tuna/Sardines (packed in oil or water)</li>
-            <li>Stocks/Broths (chicken, vegetable, beef – low sodium preferred)</li>
-            <li>Olives</li>
-            <li>Pickles</li>
-            <li>Mustard (Dijon, whole grain)</li>
-            <li>Mayonnaise</li>
-            <li>Honey/Maple Syrup</li>
-            <li>Soy Sauce/Tamari</li>
-            <li>Hot Sauce</li>
-        </ul>
-        <h4>Grains, Legumes & Pasta:</h4>
-        <ul>
-            <li>Rice (long-grain white, brown, basmati, jasmine)</li>
-            <li>Pasta (various shapes)</li>
-            <li>Oats (rolled or steel-cut)</li>
-            <li>Lentils (green or brown)</li>
-            <li>Flour (all-purpose)</li>
-            <li>Sugar (granulated, brown)</li>
-            <li>Breadcrumbs</li>
-        </ul>
-        <h4>Baking Essentials:</h4>
-        <ul>
-            <li>Baking Soda</li>
-            <li>Baking Powder</li>
-            <li>Vanilla Extract</li>
-            <li>Chocolate Chips/Cocoa Powder (if you bake)</li>
-        </ul>
-        <h4>Refrigerated Staples:</h4>
-        <ul>
-            <li>Eggs</li>
-            <li>Butter</li>
-            <li>Milk (or non-dairy alternative)</li>
-            <li>Yogurt (plain)</li>
-            <li>Cheese (cheddar, Parmesan, mozzarella)</li>
-            <li>Onions</li>
-            <li>Garlic</li>
-            <li>Lemons</li>
-        </ul>
-
-        <h3>Food Safety Fundamentals: Critical Hygiene, Storage, and Temperature Practices</h3>
-        <p>Food safety is paramount in the kitchen to prevent foodborne illnesses.</p>
-        <h4>The Four Core Steps to Food Safety:</h4>
-        <ol>
-            <li><strong>Clean:</strong>
-                <ul>
-                    <li>Wash hands thoroughly with soap and warm water for at least 20 seconds before, during, and after handling food, and after using the restroom.</li>
-                    <li>Wash cutting boards, dishes, utensils, and countertops with hot, soapy water after preparing each food item.</li>
-                    <li>Rinse fresh fruits and vegetables under running water before eating, cutting, or cooking. Do not wash raw meat, poultry, or eggs, as this can spread bacteria to your sink and countertops.</li>
-                    <li>Clean lids of canned goods before opening.</li>
-                </ul>
-            </li>
-            <li><strong>Separate (Don't Cross-Contaminate):</strong>
-                <ul>
-                    <li>Use separate cutting boards, plates, and utensils for raw meat, poultry, seafood, and eggs from those used for ready-to-eat foods.</li>
-                    <li>Keep raw meat, poultry, seafood, and eggs separate from other foods in your grocery cart, grocery bags, and refrigerator.</li>
-                    <li>Marinate food in a covered dish in the refrigerator.</li>
-                </ul>
-            </li>
-            <li><strong>Cook:</strong>
-                <ul>
-                    <li>Cook food to the proper internal temperature to kill harmful bacteria. Use a food thermometer.</li>
-                    <li>Beef, Pork, Veal & Lamb (steaks, roasts, chops): 145°F (63°C) with a 3-minute rest.</li>
-                    <li>Ground Meats (beef, pork, veal, lamb): 160°F (71°C).</li>
-                    <li>Poultry (chicken, turkey – whole, parts, ground): 165°F (74°C).</li>
-                    <li>Eggs: Cook until yolk and white are firm. Egg dishes to 160°F (71°C).</li>
-                    <li>Fish & Shellfish: 145°F (63°C) or until flesh is opaque and separates easily with a fork.</li>
-                    <li>Leftovers & Casseroles: Reheat to 165°F (74°C).</li>
-                </ul>
-            </li>
-            <li><strong>Chill:</strong>
-                <ul>
-                    <li>Refrigerate perishable foods promptly. Do not leave them at room temperature for more than two hours (or one hour if the temperature is above 90°F/32°C).</li>
-                    <li>Your refrigerator should be set to 40°F (4°C) or below, and your freezer to 0°F (-18°C) or below.</li>
-                    <li>Thaw frozen food safely: in the refrigerator, in cold water (changing water every 30 minutes), or in the microwave (cook immediately after thawing). Never thaw on the counter.</li>
-                    <li>Divide large amounts of leftovers into shallow containers for quicker cooling in the refrigerator.</li>
-                </ul>
-            </li>
-        </ol>
-        <h4>Additional Food Safety Tips:</h4>
-        <ul>
-            <li>Check "use-by" dates.</li>
-            <li>When in doubt, throw it out.</li>
-            <li>Keep pets away from food preparation areas.</li>
-        </ul>
-
-        <h3>Understanding Ingredients: Seasonality, Quality, Basic Flavor Profiles</h3>
-        <h4>Seasonality:</h4>
-        <p>Cooking with seasonal ingredients means using produce that is at its peak in terms of flavor, nutrition, and availability.</p>
-        <h5>Benefits:</h5>
-        <ul>
-            <li><strong>Better Flavor & Nutrition:</strong> Seasonal produce is generally fresher, tastes better, and is more nutrient-dense as it's harvested at its peak ripeness.</li>
-            <li><strong>Cost-Effective:</strong> When produce is in season, it's more abundant and often less expensive.</li>
-            <li><strong>Supports Local Economy:</strong> Buying seasonal often means supporting local farmers.</li>
-            <li><strong>Environmental Benefits:</strong> Reduces the need for long-distance transportation and artificial ripening.</li>
-        </ul>
-        <p><em>How to Learn:</em> Visit local farmers' markets, check regional seasonality charts online, or talk to your grocer.</p>
-
-        <h4>Quality:</h4>
-        <p>The quality of your ingredients significantly impacts the final dish.</p>
-        <ul>
-            <li><strong>Freshness:</strong> Use the freshest ingredients you can find. Look for vibrant colors, firm textures, and fresh aromas in produce. For meats and seafood, buy from reputable sources.</li>
-            <li><strong>"Good" vs. "Best":</strong> You don't always need the most expensive ingredients, but understanding when quality makes a big difference is key. For example, for a simple tomato salad, high-quality, ripe tomatoes are essential. For a long-cooked stew, very expensive cuts of meat might not be necessary.</li>
-            <li><strong>Read Labels:</strong> Understand what you're buying, especially for packaged goods (e.g., "extra virgin" olive oil, grades of meat).</li>
-        </ul>
-
-        <h4>Basic Flavor Profiles:</h4> Understanding these will help you balance flavors in your cooking.
-        <dl>
-            <dt>Sweet:</dt><dd>(e.g., sugar, honey, fruits, some vegetables like carrots and sweet potatoes). Adds pleasantness, can balance sourness or bitterness.</dd>
-            <dt>Sour (Acidic):</dt><dd>(e.g., citrus fruits like lemons and limes, vinegar, yogurt, tomatoes). Brightens flavors, cuts through richness, can balance sweetness.</dd>
-            <dt>Salty:</dt><dd>(e.g., salt, soy sauce, cheese, cured meats). Enhances other flavors, can balance bitterness. The most crucial seasoning.</dd>
-            <dt>Bitter:</dt><dd>(e.g., dark leafy greens like kale or radicchio, coffee, cocoa, some herbs and spices). Adds complexity, can balance sweetness. Often an acquired taste.</dd>
-            <dt>Umami (Savory):</dt><dd>(e.g., mushrooms, aged cheeses like Parmesan, soy sauce, miso, tomatoes, cured meats, nutritional yeast). Creates a sense of depth, richness, and satisfaction. Often described as "meaty" or "brothy."</dd>
-        </dl>
-        <div class="pro-tip">
-            <strong>Pro-Tip:</strong> Great cooking often involves balancing these flavor profiles. If a dish tastes flat, it might need a touch of acidity (lemon juice, vinegar) or more salt. If it's too rich, acidity can help. If too bitter, a little sweetness or salt might balance it. Taste and adjust!
-        </div>
-    </section>
-
-    <section id="part2">
-        <h2>Part 2: Mastering Essential Cooking Techniques</h2>
-        <p>Cooking is built upon a foundation of core techniques. Understanding and practicing these will give you the confidence to tackle any recipe and even start creating your own.</p>
-
-        <article class="technique">
-            <h3>1. Knife Skills</h3>
-            <dl>
-                <dt>Explanation:</dt>
-                <dd>Proper knife skills are crucial for efficiency, safety, and uniform cooking. Different cuts affect cooking time and texture.</dd>
-                <dt>Step-by-Step Instructions:</dt>
-                <dd>
+    <header class="hero-section">
+        <h1><i class="bi bi-book-half"></i> Interactive Culinary Cheatsheet</h1>
+        <p class="lead">Your one-page guide to mastering the art and science of cooking. Skim, dive deep, and create!</p>
+    </header>
+
+    <div class="container">
+        <!-- Introduction Section -->
+        <section class="main-section" id="introduction-section">
+             <div class="main-section-header">
+                <h2><i class="bi bi-door-open-fill"></i>Introduction</h2>
+            </div>
+            <h4>Welcome to Your Culinary Journey!</h4>
+            <p>This cheatsheet is designed to be your trusted companion in the kitchen, whether you're just starting out or looking to refine your skills. Cooking is an immensely rewarding endeavor – it's a blend of art and science, a way to nourish, create, and connect. We believe that with a solid understanding of foundational principles and techniques, anyone can become a confident and joyful cook.</p>
+            <p>Our philosophy is that cooking should be approachable, experimental, and above all, enjoyable. Don't be afraid to make mistakes; they are often the best teachers! Use this guide to build your knowledge progressively.</p>
+            <h4>How to Use This Cheatsheet:</h4>
+            <ul class="styled-list">
+                <li><strong>Skim & Scan:</strong> Use the main section headers to quickly find the area you're interested in.</li>
+                <li><strong>Dive Deep:</strong> Click on any topic header (e.g., "Knife Skills," "Sautéing") to expand the section and reveal detailed explanations, steps, tips, and resources.</li>
+                <li><strong>Expand/Collapse All:</strong> Utilize the "Expand All" / "Collapse All" buttons within each major part (Foundations, Techniques, Styles) to manage content visibility efficiently.</li>
+                <li><strong>Learn & Practice:</strong> Absorb the information, try the practice drills, and explore the linked resources to see techniques in action.</li>
+                <li><strong>Experiment:</strong> Once you're comfortable, don't hesitate to adapt recipes and techniques to your own taste.</li>
+            </ul>
+            <h4>Key Resources for General Culinary Learning:</h4>
+            <ul>
+                <li><a href="https://www.thekitchn.com/collection/cooking-school" target="_blank">The Kitchn Cooking School - A great starting point for basics.</a></li>
+                <li><a href="https://www.seriouseats.com/techniques" target="_blank">Serious Eats - In-depth articles on food science and techniques.</a></li>
+                <li><a href="https://www.youtube.com/user/americastestkitchen" target="_blank">America's Test Kitchen (YouTube) - Reliable recipes and technique demonstrations.</a></li>
+                <li><a href="https://www.bbcgoodfood.com/howto/guide/category/cookery-skills" target="_blank">BBC Good Food - Skills - Wide range of how-to guides.</a></li>
+            </ul>
+            <p>Let's embark on this delicious adventure together!</p>
+        </section>
+
+
+        <!-- Part 1: Culinary Foundations -->
+        <section class="main-section" id="part1-foundations">
+            <div class="main-section-header">
+                <h2><i class="bi bi-bricks"></i>Part 1: Culinary Foundations</h2>
+                <div class="main-section-controls">
+                    <button class="btn btn-sm expand-all-btn" data-target-parent="part1-foundations"><i class="bi bi-arrows-expand"></i> Expand All</button>
+                    <button class="btn btn-sm collapse-all-btn" data-target-parent="part1-foundations"><i class="bi bi-arrows-collapse"></i> Collapse All</button>
+                </div>
+            </div>
+            <p class="lead" style="font-size: 1.1rem; color: var(--text-color-muted);">The building blocks of every great dish. Master these for kitchen confidence.</p>
+
+            <div class="collapsible-item" id="equip">
+                <div class="collapsible-header" role="button" tabindex="0" aria-expanded="false" aria-controls="content-equip">
+                    <div class="collapsible-title-group">
+                        <i class="bi bi-tools collapsible-icon-main"></i>
+                        <h3 class="collapsible-title">Essential Equipment</h3>
+                    </div>
+                    <i class="bi bi-chevron-down collapsible-icon-toggle"></i>
+                </div>
+                <div class="collapsible-content" id="content-equip" role="region" aria-labelledby="equip">
+                    <h4>Detailed Explanation:</h4>
+                    <p>Having the right tools doesn't mean needing an overly complicated kitchen. A few well-chosen, quality pieces will serve you far better than a drawer full of single-task gadgets. Focus on versatility and durability.</p>
+                    <dt>Must-Haves (Elaborated):</dt>
+                        <dd><strong>Chef's Knife (8-10 inch):</strong> Your workhorse. Used for ~90% of cutting tasks. A good German or Japanese style knife is a worthy investment.
+                        <br><em>Material Matters:</em> High-carbon stainless steel offers a good balance of sharpness, durability, and rust resistance.</dd>
+                        <dd><strong>Paring Knife (3-4 inch):</strong> For delicate tasks like peeling, coring apples, mincing small items like garlic, or hulling strawberries.</dd>
+                        <dd><strong>Cutting Boards (At least TWO):</strong> One for raw proteins (meat, poultry, fish) to prevent cross-contamination, and one for produce/cooked foods.
+                        <br><em>Materials:</em> Wood (maple, walnut - kind to knives, some antimicrobial properties) or plastic (dishwasher safe, but can harbor bacteria in deep grooves). Avoid glass (dulls knives).</dd>
+                        <dd><strong>Saucepans (1-2qt & 3-4qt with lids):</strong> For sauces, boiling, simmering. Look for heavy bottoms for even heat distribution.</dd>
+                        <dd><strong>Frying Pan/Skillet (10-12 inch):</strong>
+                            <br><em>Cast Iron:</em> Excellent heat retention, great for searing, naturally non-stick when seasoned. Requires specific care.
+                            <br><em>Stainless Steel (Clad):</em> Durable, even heating, great for browning and developing fond. Can be trickier with delicate foods.
+                            <br><em>Non-Stick:</em> Good for eggs, pancakes, delicate fish. Use non-metal utensils and avoid very high heat. Replace when scratched.</dd>
+                        <dd><strong>Stockpot (6-8qt+):</strong> For stocks, large batches of soup, boiling pasta. A wider base is better than very tall and narrow for evaporation if reducing stocks.</dd>
+                        <dd><strong>Mixing Bowls (Set of 3-5, various sizes):</strong> Glass, stainless steel, or ceramic. Nesting bowls save space.</dd>
+                        <dd><strong>Measuring Cups (Dry & Liquid sets) & Spoons:</strong> Accuracy is crucial, especially in baking.</dd>
+                        <dd><strong>Colander/Strainer (Fine & Coarse):</strong> For draining pasta, washing vegetables, sifting.</dd>
+                        <dd><strong>Basic Utensils:</strong> Wooden spoons (won't scratch), heat-resistant silicone spatulas (for scraping), metal fish spatula (thin, flexible), whisks (balloon, flat), ladle, tongs (locking are convenient).</dd>
+                        <dd><strong>Digital Instant-Read Thermometer:</strong> Essential for food safety and perfectly cooked proteins. Don't guess!</dd>
+                        <dd><strong>Oven Thermometer:</strong> Most oven thermostats are inaccurate. This ensures you're baking/roasting at the correct temperature.</dd>
+                    <dt>Nice-to-Haves (Elaborated):</dt>
+                        <dd><strong>Dutch Oven (Enameled Cast Iron, 5-7qt):</strong> Incredibly versatile for braises, stews, soups, bread baking. A kitchen heirloom.</dd>
+                        <dd><strong>Roasting Pan with Rack:</strong> For large roasts, poultry. Rack allows air circulation.</dd>
+                        <dd><strong>Baking Sheets (Heavy Duty Rimmed, "Half-Sheet" size):</strong> For cookies, roasting vegetables, sheet-pan dinners. Heavy gauge resists warping.</dd>
+                        <dd><strong>Microplane Grater/Zester:</strong> Far superior to box grater for zesting citrus, grating hard cheese, nutmeg, ginger, garlic.</dd>
+                        <dd><strong>Immersion Blender:</strong> Blend soups directly in the pot, small batches of sauces or smoothies.</dd>
+                    <h4>Practical Tips for Mastery:</h4>
                     <ul>
-                        <li><strong>The Grip:</strong> Hold the knife firmly but not too tightly. For a chef's knife, grip the handle with three fingers, placing your thumb and index finger on the blade just in front of the bolster (the thick part where the blade meets the handle). This is the "pinch grip."</li>
-                        <li><strong>The "Claw":</strong> Guide the food with your non-knife hand, curling your fingertips under like a claw. Your knuckles should guide the side of the knife blade. This protects your fingertips.</li>
-                        <li><strong>The Motion:</strong> Use a rocking motion with a chef's knife, keeping the tip of the knife in contact with the cutting board as much as possible. Lift the heel of the knife up and down, pushing forward slightly with each cut.</li>
-                        <li><strong>Dicing (e.g., an onion):</strong>
-                            <ol>
-                                <li>Cut the onion in half pole to pole. Peel.</li>
-                                <li>Place one half flat-side down. Make vertical cuts, leaving the root end intact.</li>
-                                <li>Make 1-2 horizontal cuts towards the root end (depending on onion thickness), again leaving the root intact.</li>
-                                <li>Slice across the onion (perpendicular to the first cuts) to create dice. The closer your cuts, the smaller the dice.</li>
-                            </ol>
-                        </li>
-                        <li><strong>Mincing (e.g., garlic):</strong>
-                            <ol>
-                                <li>Smash the garlic clove with the side of your knife to easily remove the peel.</li>
-                                <li>Roughly chop the garlic.</li>
-                                <li>Place one hand on top of the knife tip and rock the knife back and forth over the garlic, gathering it together periodically, until very finely chopped.</li>
-                            </ol>
-                        </li>
-                        <li><strong>Julienning (e.g., carrots, bell peppers):</strong>
-                            <ol>
-                                <li>Cut the vegetable into manageable lengths (e.g., 2-3 inches).</li>
-                                <li>Square off the sides to create a stable block.</li>
-                                <li>Slice the block into thin planks (e.g., 1/8 inch).</li>
-                                <li>Stack a few planks and slice them lengthwise into thin matchsticks.</li>
-                            </ol>
-                        </li>
-                        <li><strong>Chiffonade (e.g., basil, spinach):</strong>
-                            <ol>
-                                <li>Stack several leaves on top of each other.</li>
-                                <li>Roll the stack tightly like a cigar.</li>
-                                <li>Slice thinly across the roll to create fine ribbons.</li>
-                            </ol>
-                        </li>
+                        <li><strong>Quality over Quantity:</strong> Buy the best quality you can afford for your most-used items, especially knives and cookware.</li>
+                        <li><strong>Care for Your Tools:</strong>
+                            <br>- Hand wash good knives immediately, dry thoroughly. Learn to hone and sharpen them.
+                            <br>- Season and care for cast iron properly.
+                            <br>- Avoid harsh abrasives on non-stick surfaces.</li>
+                        <li><strong>Understand Your Cookware:</strong> Different materials conduct and retain heat differently. Stainless steel heats quickly, cast iron retains heat long.</li>
+                    </ul>
+                    <div class="callout pro-tip">
+                        <div class="callout-content">
+                            <h5><i class="bi bi-lightbulb-fill"></i>Pro-Tip: Organization is Key</h5>
+                            Keep frequently used tools easily accessible (e.g., utensil crock by the stove, knives in a block or on a magnetic strip). A clean, organized workspace makes cooking more enjoyable and efficient.
+                        </div>
+                    </div>
+                    <h4>Key Resources & Further Learning:</h4>
+                    <ul>
+                        <li><a href="https://www.seriouseats.com/essential-kitchen-tools-gadgets-equipment-gear" target="_blank">Serious Eats: The Best Essential Kitchen Equipment</a></li>
+                        <li><a href="https://www.youtube.com/results?search_query=how+to+choose+a+chef+knife" target="_blank">Watch: How to Choose a Chef Knife (YouTube Search)</a></li>
+                        <li><a href="https://www.youtube.com/results?search_query=how+to+season+cast+iron+pan" target="_blank">Watch: How to Season and Maintain a Cast Iron Pan (YouTube Search)</a></li>
+                        <li><a href="https://www.cooksillustrated.com/articles/1969-do-you-need-an-oven-thermometer" target="_blank">Cook's Illustrated: Do You Need an Oven Thermometer?</a></li>
+                    </ul>
+                </div>
+            </div>
+
+            <div class="collapsible-item" id="pantry">
+                <div class="collapsible-header" role="button" tabindex="0" aria-expanded="false" aria-controls="content-pantry">
+                    <div class="collapsible-title-group">
+                        <i class="bi bi-basket3-fill collapsible-icon-main"></i>
+                        <h3 class="collapsible-title">Pantry Essentials</h3>
+                    </div>
+                    <i class="bi bi-chevron-down collapsible-icon-toggle"></i>
+                </div>
+                <div class="collapsible-content" id="content-pantry" role="region" aria-labelledby="pantry">
+                    <h4>Detailed Explanation:</h4>
+                    <p>A well-stocked pantry is the foundation of spontaneous, flavorful cooking. It allows you to create diverse meals without constant trips to the store. Focus on shelf-stable items that form the backbone of many recipes.</p>
+                    <dt>Spices & Herbs (The Flavor Base):</dt>
+                        <dd><strong>Whole vs. Ground:</strong> Whole spices (like peppercorns, cumin seeds, coriander seeds) retain their flavor longer and can be toasted and ground fresh for maximum impact. Pre-ground are convenient but lose potency faster.
+                        <br><em>Must-Haves (Ground/Dried):</em> Kosher Salt (for general cooking), Sea Salt Flakes (for finishing), Black Peppercorns (for fresh grinding), Garlic Powder, Onion Powder, Dried Oregano, Dried Basil, Dried Thyme, Ground Cumin, Ground Coriander, Sweet Paprika, Smoked Paprika, Red Pepper Flakes, Bay Leaves, Ground Cinnamon, Ground Nutmeg.
+                        <br><em>Expand Your Horizons:</em> Turmeric, Cayenne Pepper, Chili Powder (blend), Curry Powder, Dried Dill, Rosemary, Sage, Star Anise, Cloves, Cardamom.</dd>
+                    <dt>Oils & Vinegars (The Cooking Medium & Brighteners):</dt>
+                        <dd><strong>Oils:</strong>
+                            <br>- <em>Extra Virgin Olive Oil (EVOO):</em> Fruity, flavorful. Best for dressings, finishing, gentle cooking. Lower smoke point.
+                            <br>- <em>Neutral Oils:</em> (Canola, Vegetable, Grapeseed, Avocado, Light Olive Oil) Higher smoke points, neutral flavor. For searing, frying, baking. Avocado oil has a very high smoke point.
+                            <br>- <em>Specialty Oils:</em> Toasted Sesame Oil (finishing Asian dishes), Coconut Oil (baking, some cuisines).
+                        <dd><strong>Vinegars:</strong>
+                            <br>- <em>Apple Cider Vinegar:</em> Fruity, mild. Great for dressings, marinades.
+                            <br>- <em>Red Wine & White Wine Vinegar:</em> Common in European cooking, dressings, deglazing.
+                            <br>- <em>Balsamic Vinegar:</em> (Good quality aged for finishing, everyday for cooking/glazes). Sweet and tangy.
+                            <br>- <em>Rice Vinegar:</em> Mild, slightly sweet. Essential for Asian cuisines.</dd>
+                    <dt>Canned & Jarred Goods (The Time Savers):</dt>
+                        <dd>Tomatoes (Diced, Crushed, Whole Peeled, Paste - choose low/no sodium if possible), Beans (Chickpeas, Black Beans, Kidney, Cannellini - rinse well), Tuna/Sardines (in oil or water), Coconut Milk (full-fat for richness), Stocks/Broths (Chicken, Vegetable, Beef - low sodium preferred to control salt), Olives, Capers, Pickles (dill, cornichons), Mustard (Dijon, Whole Grain, Yellow), Mayonnaise, Honey/Maple Syrup, Soy Sauce/Tamari (low sodium), Hot Sauce (your favorite style).</dd>
+                    <dt>Grains, Legumes, Pasta (The Foundation):</dt>
+                        <dd>Rice (Long-grain white, Brown, Basmati, Jasmine, Arborio for risotto), Pasta (various shapes - spaghetti, penne, rotini), Oats (Rolled, Steel-cut), Quinoa, Dried Lentils (Green, Brown, Red), All-Purpose Flour, Bread Flour (if baking bread), Whole Wheat Flour, Cornmeal, Granulated Sugar, Brown Sugar (Light/Dark), Powdered Sugar, Breadcrumbs (Panko are great for crispy coatings).</dd>
+                    <h4>Practical Tips for Mastery:</h4>
+                    <ul>
+                        <li><strong>Storage:</strong> Store spices in airtight containers away from heat, light, and moisture. Whole spices last longer than ground. Oils can go rancid; store in cool, dark places.</li>
+                        <li><strong>FIFO (First In, First Out):</strong> Rotate your pantry stock to use older items first.</li>
+                        <li><strong>Buy in Bulk (Smartly):</strong> Items you use frequently can be bought in larger quantities if storage allows, but be mindful of shelf life for things like nuts and whole grain flours (store in freezer to extend life).</li>
+                        <li><strong>Label Everything:</strong> Especially when transferring items to your own containers. Include purchase or expiry date.</li>
                     </ul>
-                </dd>
-                <dt>Practical Tips for Mastery:</dt>
-                <dd>
+                    <h4>Key Resources & Further Learning:</h4>
                     <ul>
-                        <li><strong>Use a Sharp Knife:</strong> A dull knife is more dangerous as it requires more pressure and can slip.</li>
-                        <li><strong>Stable Cutting Board:</strong> Place a damp paper towel or a non-slip mat under your cutting board to prevent it from moving.</li>
-                        <li><strong>Practice Slowly:</strong> Focus on technique first, speed will come with practice.</li>
-                        <li><strong>Uniformity:</strong> Aim for pieces of similar size for even cooking.</li>
+                        <li><a href="https://www.bonappetit.com/story/building-a-better-pantry" target="_blank">Bon Appétit: Building a Better Pantry</a></li>
+                        <li><a href="https://www.seriouseats.com/essential-pantry-staples-for-cooking" target="_blank">Serious Eats: The Essential Pantry Staples for Home Cooks</a></li>
+                        <li><a href="https://www.youtube.com/results?search_query=how+to+organize+kitchen+pantry" target="_blank">Watch: How to Organize Your Kitchen Pantry (YouTube Search)</a></li>
+                        <li><a href="https://www.thespicehouse.com/blogs/news" target="_blank">Learn About Spices: The Spice House Blog</a></li>
                     </ul>
-                </dd>
-                <dt>Troubleshooting:</dt>
-                <dd>
+                </div>
+            </div>
+
+            <div class="collapsible-item" id="foodsafety">
+                <div class="collapsible-header" role="button" tabindex="0" aria-expanded="false" aria-controls="content-foodsafety">
+                    <div class="collapsible-title-group">
+                        <i class="bi bi-shield-lock-fill collapsible-icon-main"></i>
+                        <h3 class="collapsible-title">Food Safety Fundamentals</h3>
+                    </div>
+                    <i class="bi bi-chevron-down collapsible-icon-toggle"></i>
+                </div>
+                <div class="collapsible-content" id="content-foodsafety" role="region" aria-labelledby="foodsafety">
+                    <h4>Detailed Explanation:</h4>
+                    <p>Food safety is non-negotiable in the kitchen. Understanding and consistently applying basic food safety principles will prevent foodborne illnesses and ensure the food you prepare is not only delicious but also safe to eat.</p>
+                    <dt>The Four Core Steps to Food Safety (Elaborated):</dt>
+                        <dd><strong>1. Clean: Why?</strong> Bacteria can spread throughout the kitchen and get onto hands, cutting boards, utensils, and food.
+                            <br><em>Practice:</em> Wash hands with soap and warm water for at least 20 seconds. Wash surfaces and equipment with hot, soapy water. Rinse all fresh fruits and vegetables under running water before use, even if you plan to peel them (bacteria on the outside can be transferred by the knife). Do NOT wash raw meat or poultry; this can splash bacteria onto surrounding surfaces. Cooking will kill bacteria.</dd>
+                        <dd><strong>2. Separate: Why?</strong> Cross-contamination is a major cause of food poisoning. It occurs when harmful bacteria from raw foods (especially meat, poultry, seafood, and eggs) are transferred to ready-to-eat foods.
+                            <br><em>Practice:</em> Use separate cutting boards, plates, and utensils for raw and cooked/ready-to-eat foods. Store raw meat on the bottom shelf of the refrigerator in sealed containers to prevent drips. Never place cooked food back on a plate that held raw food unless the plate has been thoroughly washed.</dd>
+                        <dd><strong>3. Cook: Why?</strong> Proper cooking kills harmful bacteria like Salmonella, E. coli, and Listeria. Color is not a reliable indicator of doneness.
+                            <br><em>Practice:</em> Use a food thermometer to ensure foods reach a safe minimum internal temperature.
+                                <br>- Poultry (Chicken, Turkey): 165°F (74°C)
+                                <br>- Ground Meats (Beef, Pork, Lamb): 160°F (71°C)
+                                <br>- Beef, Pork, Veal, Lamb (Steaks, Roasts, Chops): 145°F (63°C) with a 3-minute rest time.
+                                <br>- Fish & Shellfish: 145°F (63°C) or until flesh is opaque and flakes easily.
+                                <br>- Eggs: Cook until yolks and whites are firm. Egg dishes (like quiches, casseroles) to 160°F (71°C).
+                                <br>- Leftovers & Casseroles: Reheat to 165°F (74°C).</dd>
+                        <dd><strong>4. Chill: Why?</strong> Bacteria multiply rapidly at room temperature (the "Danger Zone" between 40°F and 140°F or 4°C and 60°C). Proper chilling slows bacterial growth.
+                            <br><em>Practice:</em> Refrigerate perishable foods within two hours (or one hour if the ambient temperature is above 90°F/32°C). Set your refrigerator to 40°F (4°C) or below and your freezer to 0°F (-18°C) or below. Thaw frozen food safely: in the refrigerator, in cold water (changed every 30 mins), or in the microwave (cook immediately). Never thaw on the counter. Divide large portions of leftovers into shallow containers for quicker cooling.</dd>
+                    <h4>Practical Tips for Mastery:</h4>
                     <ul>
-                        <li class="troubleshooting-item"><strong>Food Sticking to Knife:</strong> Wipe the blade occasionally. Some knives have indentations (Granton edge) to help reduce sticking.</li>
-                        <li class="troubleshooting-item"><strong>Uneven Pieces:</strong> Slow down and focus on consistent cuts.</li>
+                        <li><strong>Thermometer Use:</strong> Calibrate your food thermometer regularly. Insert it into the thickest part of the food, avoiding bone.</li>
+                        <li><strong>Date Your Leftovers:</strong> Consume refrigerated leftovers within 3-4 days, or freeze them for longer storage.</li>
+                        <li><strong>Handwashing Frequency:</strong> Wash hands before starting, after handling raw meat, after touching your face/hair, after using the restroom, and before serving food.</li>
+                        <li><strong>Clean Sponges/Cloths:</strong> Sanitize or replace sponges and dishcloths regularly as they can harbor bacteria.</li>
                     </ul>
-                </dd>
-                <dt>Practice Drill:</dt>
-                <dd class="practice-drill">Dice an onion. Aim for consistent œ-inch dice, then Œ-inch dice. Practice julienning a carrot.</dd>
-            </dl>
-        </article>
-
-        <article class="technique">
-            <h3>2. Sautéing</h3>
-            <dl>
-                <dt>Explanation:</dt>
-                <dd>To cook food quickly in a small amount of fat over relatively high heat, stirring or tossing frequently. It develops flavor and color. The French word "sauter" means "to jump," referring to the way food is tossed in the pan.</dd>
-                <dt>Step-by-Step Instructions:</dt>
-                <dd>
+                    <div class="callout pro-tip">
+                        <div class="callout-content">
+                           <h5><i class="bi bi-exclamation-triangle-fill"></i>Critical Reminder: The Danger Zone</h5>
+                           Never leave perishable food in the "Danger Zone" (40°F - 140°F or 4°C - 60°C) for more than two hours (one hour if temps are above 90°F/32°C). This includes preparation time, serving time, and cooling time.
+                        </div>
+                    </div>
+                    <h4>Key Resources & Further Learning:</h4>
+                    <ul>
+                        <li><a href="https://www.foodsafety.gov/" target="_blank">FoodSafety.gov - Official US government food safety information.</a></li>
+                        <li><a href="https://www.who.int/news-room/fact-sheets/detail/food-safety" target="_blank">World Health Organization (WHO) - Food Safety Fact Sheet</a></li>
+                        <li><a href="https://www.youtube.com/results?search_query=how+to+use+a+food+thermometer+correctly" target="_blank">Watch: How to Use a Food Thermometer Correctly (YouTube Search)</a></li>
+                        <li><a href="https://www.fsis.usda.gov/food-safety/safe-food-handling-and-preparation/food-safety-basics/steps-keep-food-safe" target="_blank">USDA - Steps to Keep Food Safe</a>. [16]</li>
+                    </ul>
+                </div>
+            </div>
+
+            <div class="collapsible-item" id="ingredients">
+                <div class="collapsible-header" role="button" tabindex="0" aria-expanded="false" aria-controls="content-ingredients">
+                    <div class="collapsible-title-group">
+                        <i class="bi bi-palette-fill collapsible-icon-main"></i>
+                        <h3 class="collapsible-title">Understanding Ingredients</h3>
+                    </div>
+                    <i class="bi bi-chevron-down collapsible-icon-toggle"></i>
+                </div>
+                <div class="collapsible-content" id="content-ingredients" role="region" aria-labelledby="ingredients">
+                    <h4>Detailed Explanation:</h4>
+                    <p>Great cooking starts with great ingredients. Understanding seasonality, how to judge quality, and the fundamental flavor profiles will dramatically improve your cooking.</p>
+                    <dt>Seasonality (Eating with the Rhythms of Nature):</dt>
+                        <dd>Seasonal produce is harvested at its peak, meaning it's generally more flavorful, nutrient-dense, and often more affordable.
+                        <br><em>Benefits:</em> Supports local farmers, reduces environmental impact from long-distance shipping and artificial ripening.
+                        <br><em>How to Learn:</em> Visit farmers' markets and talk to vendors. Use online seasonal food guides specific to your region.</dd>
+                    <dt>Quality (Choosing the Best You Can):</dt>
+                        <dd><strong>Produce:</strong> Look for vibrant colors, firm textures (or appropriate ripeness for fruits like peaches, avocados), fresh aromas, and minimal bruising or blemishes. Heavy for its size often indicates juiciness.
+                        <br><strong>Meats/Poultry:</strong> Buy from reputable butchers or sources. Look for good color (bright red for beef, pinkish for pork/poultry), firm flesh, and minimal odor. Understand meat grades if applicable.
+                        <br><strong>Seafood:</strong> Fresh fish should have clear, bright eyes, firm flesh that springs back when pressed, and smell like the ocean, not "fishy." Shellfish should be tightly closed (clams, mussels) or lively (crabs, lobsters).
+                        <br><strong>Dairy & Eggs:</strong> Check expiration dates. Choose organic or pasture-raised if your budget allows for potentially better flavor and animal welfare.
+                        <br><em>Reading Labels:</em> Understand terms like "organic," "grass-fed," "free-range," "extra virgin" (for olive oil). This helps you make informed choices aligned with your values and culinary goals.</dd>
+                    <dt>Basic Flavor Profiles (The Five Tastes - and Beyond):</dt>
+                        <dd>Mastering the interplay of these tastes is key to balanced and exciting dishes.
+                        <br>- <strong>Sweet:</strong> (Sugar, honey, fruit, root vegetables) Provides pleasantness, balances sourness and bitterness. Can add depth when caramelized.
+                        <br>- <strong>Sour (Acidic):</strong> (Citrus, vinegar, yogurt, tomatoes, wine) Brightens flavors, cuts through richness/fat, can "lift" a dish. Essential for balance.
+                        <br>- <strong>Salty:</strong> (Salt, soy sauce, cheese, cured meats) Enhances all other flavors, suppresses bitterness. The most critical seasoning – learn to salt properly at different stages.
+                        <br>- <strong>Bitter:</strong> (Dark leafy greens like kale/radicchio, coffee, cocoa, beer, citrus zest) Adds complexity, stimulates appetite. Can balance sweetness. Often an acquired taste but vital in many cuisines.
+                        <br>- <strong>Umami (Savory):</strong> (Mushrooms, aged cheese, soy sauce, miso, tomatoes, cured meats, MSG) Creates depth, richness, and a "meaty" satisfaction. Enhances other flavors and promotes a feeling of fullness.
+                        <br>- <em>Beyond the Five:</em> Also consider Piquancy (spiciness from capsaicin), Astringency (tannins in tea/wine), Fattiness (mouthfeel, carries flavor), Temperature, and Texture as crucial elements of the eating experience.</dd>
+                    <h4>Practical Tips for Mastery:</h4>
+                    <ul>
+                        <li><strong>Taste Everything (Safely):</strong> Taste individual ingredients to understand their base flavor. Taste your dish at multiple stages of cooking and adjust.</li>
+                        <li><strong>Balance is Key:</strong> If a dish tastes flat, it might need salt or acid. Too rich? Add acid. Too bitter? A pinch of salt or sweetness. Too sweet? Salt or acid.</li>
+                        <li><strong>Source Locally When Possible:</strong> Often fresher and supports your community.</li>
+                        <li><strong>Don't Be Afraid of Fat:</strong> Fat carries flavor and contributes to texture. Choose healthy fats and use them appropriately.</li>
+                    </ul>
+                    <h4>Key Resources & Further Learning:</h4>
+                    <ul>
+                        <li><a href="https://www.seasonalfoodguide.org/" target="_blank">Seasonal Food Guide - Find out what's in season in your area.</a></li>
+                        <li><a href="https://www.amazon.com/Salt-Fat-Acid-Heat-Mastering/dp/1476753830" target="_blank">"Salt, Fat, Acid, Heat" by Samin Nosrat (Book & Netflix Series) - Seminal work on flavor.</a></li>
+                        <li><a href="https://www.youtube.com/results?search_query=how+to+pick+fresh+produce" target="_blank">Watch: How to Pick Fresh Produce (YouTube Search)</a></li>
+                        <li><a href="https://foodinsight.org/what-is-umami/" target="_blank">Food Insight: What is Umami?</a></li>
+                    </ul>
+                </div>
+            </div>
+        </section>
+
+        <!-- Part 2: Mastering Essential Cooking Techniques -->
+        <section class="main-section" id="part2-techniques">
+            <div class="main-section-header">
+                 <h2><i class="bi bi-person-arms-up"></i>Part 2: Mastering Techniques</h2>
+                <div class="main-section-controls">
+                    <button class="btn btn-sm expand-all-btn" data-target-parent="part2-techniques"><i class="bi bi-arrows-expand"></i> Expand All</button>
+                    <button class="btn btn-sm collapse-all-btn" data-target-parent="part2-techniques"><i class="bi bi-arrows-collapse"></i> Collapse All</button>
+                </div>
+            </div>
+            <p class="lead" style="font-size: 1.1rem; color: var(--text-color-muted);">The how-to behind delicious food. Practice these skills to unlock your culinary potential.</p>
+
+            <div class="collapsible-item" id="knifeskills">
+                <div class="collapsible-header" role="button" tabindex="0" aria-expanded="false" aria-controls="content-knifeskills">
+                    <div class="collapsible-title-group">
+                        <i class="bi bi-magic collapsible-icon-main"></i>
+                        <h3 class="collapsible-title">Knife Skills</h3>
+                    </div>
+                    <i class="bi bi-chevron-down collapsible-icon-toggle"></i>
+                </div>
+                <div class="collapsible-content" id="content-knifeskills" role="region" aria-labelledby="knifeskills">
+                    <h4>Detailed Explanation:</h4>
+                    <p>Proper knife skills are the cornerstone of efficient, safe, and consistent cooking. Uniformly cut ingredients cook more evenly, look more professional, and can even taste better due to consistent surface area for browning or sauce absorption. Mastering a few basic cuts and safe handling techniques will transform your prep work from a chore into a meditative practice.</p>
+                    <dt>Key Grips & Motions:</dt>
+                        <dd><strong>The Knife Grip (Pinch Grip):</strong> Hold the handle with your last three fingers. "Pinch" the blade with your thumb and forefinger just in front of the bolster (the thick part where blade meets handle). This offers maximum control and precision.</dd>
+                        <dd><strong>The Guiding Hand (Claw Grip):</strong> Curl your fingertips under, using your knuckles as a guide against the flat side of the knife blade. This protects your fingertips and allows for consistent slice thickness.</dd>
+                        <dd><strong>Cutting Motions:</strong>
+                            <br>- <em>Rocking Chop:</em> Tip of the knife stays in contact with the board, heel lifts and lowers in a rocking motion. Good for herbs, garlic.
+                            <br>- <em>Push Cut:</em> Start with the heel of the knife, push forward and down, lifting the knife at the end. Good for slicing firm vegetables.
+                            <br>- <em>Pull Cut (Slice):</em> Often used for proteins or delicate items. Draw the knife towards you in one smooth motion.</dd>
+                    <dt>Essential Cuts (with more detail):</dt>
+                        <dd><strong>Dice (Small, Medium, Large):</strong> Creating uniform cubes.
+                            <br><em>To dice an onion:</em> Halve pole-to-pole, peel. Place flat side down. Make vertical cuts towards (but not through) the root. Make horizontal cuts parallel to the board. Slice across to release dice.
+                        <dd><strong>Mince:</strong> Very fine, irregular pieces (e.g., garlic, ginger, fresh herbs). Often achieved by roughly chopping, then rocking the knife over the pile.</dd>
+                        <dd><strong>Julienne (Matchsticks):</strong> Thin, uniform strips (e.g., carrots for slaw, potatoes for shoestring fries). Typically 1/8 x 1/8 x 2 inches. Create flat, stable surfaces first.</dd>
+                        <dd><strong>Brunoise:</strong> Very small dice (1/8 inch cubes), often starting from a julienne.</dd>
+                        <dd><strong>Chiffonade:</strong> Finely shredding leafy greens or herbs (basil, mint, spinach). Stack leaves, roll tightly like a cigar, then slice thinly across the roll.</dd>
+                    <h4>Practical Tips for Mastery:</h4>
+                    <ul>
+                        <li><strong>A Sharp Knife is a Safe Knife:</strong> A dull knife requires more pressure, increasing the risk of slipping. Learn to hone your knife regularly and sharpen it when needed.</li>
+                        <li><strong>Stable Cutting Board:</strong> Place a damp paper towel or a non-slip mat under your board to prevent it from moving.</li>
+                        <li><strong>Work Surface Height:</strong> Ensure your cutting surface is at a comfortable height to avoid straining your back or wrists.</li>
+                        <li><strong>Go Slow Before You Go Fast:</strong> Focus on correct technique and consistency first. Speed will come naturally with practice.</li>
+                        <li><strong>Respect the Blade:</strong> Always cut away from yourself. Be aware of where your fingers (especially your thumb on the guiding hand) are at all times.</li>
+                        <li><strong>Clean As You Go:</strong> A tidy workspace is a safer and more efficient workspace.</li>
+                    </ul>
+                    <h4>Common Mistakes & Troubleshooting:</h4>
+                        <dl>
+                            <dt>Uneven Pieces:</dt><dd>Rushing, not using the "claw grip" consistently, or not making stable flat surfaces on round vegetables before further cutting. Slow down, focus on uniformity.</dd>
+                            <dt>Food Slipping:</dt><dd>Cutting board might be wet or unstable. Vegetable surface might be too round or wet. Knife might be dull. Ensure stability and create flat surfaces.</dd>
+                            <dt>Fingers Too Close to Blade:</dt><dd>Not tucking fingertips under in the "claw grip." Always keep knuckles as the guide.</dd>
+                            <dt>Using Wrong Knife for the Task:</dt><dd>Trying to chop dense vegetables with a small paring knife, or using a chef's knife for delicate peeling. Match the knife to the task.</dd>
+                        </dl>
+                    <h4>Practice Drills (Expanded):</h4>
+                        <dd><strong>The Onion Challenge:</strong> Practice dicing onions regularly. Aim for different sizes (small, medium, large dice). Onions are cheap and provide great practice.</dd>
+                        <dd><strong>Carrot Consistency:</strong> Practice julienning carrots. Aim for perfectly uniform matchsticks. Then, practice dicing those julienned carrots into brunoise.</dd>
+                        <dd><strong>Herb Mastery:</strong> Practice chiffonading basil or mint. Practice mincing parsley or cilantro finely without bruising it too much (use a sharp knife and a light touch).</dd>
+                    <div class="callout pro-tip">
+                        <div class="callout-content">
+                            <h5><i class="bi bi-lightbulb-fill"></i>Pro-Tip: The "Tunnel" Method</h5>
+                            For small round items like cherry tomatoes or grapes, you can place them between two flat plastic container lids, apply gentle pressure on the top lid, and carefully slice through the middle of all items at once with a long, sharp knife. Great for halving many small items quickly.
+                        </div>
+                    </div>
+                    <h4>Key Resources & Further Learning:</h4>
+                    <ul>
+                        <li><a href="https://www.seriouseats.com/knife-skills" target="_blank">Serious Eats: Knife Skills - Comprehensive guides and videos.</a></li>
+                        <li><a href="https://www.youtube.com/watch?v=G-Fg7l7G1zw" target="_blank">Watch: Gordon Ramsay's Top 5 Knife Skills (YouTube)</a></li>
+                        <li><a href="https://www.youtube.com/results?search_query=jaques+pepin+knife+skills" target="_blank">Watch: Jaques Pépin Demonstrates Classic Knife Skills (YouTube Search)</a></li>
+                        <li><a href="https://www.cooksillustrated.com/how_tos/5444-how-to-sharpen-a-chefs-knife" target="_blank">Cook's Illustrated: How to Sharpen a Chef's Knife</a></li>
+                    </ul>
+                </div>
+            </div>
+
+            <div class="collapsible-item" id="sautéing">
+                <div class="collapsible-header" role="button" tabindex="0" aria-expanded="false" aria-controls="content-sautéing">
+                    <div class="collapsible-title-group">
+                        <i class="bi bi-egg-fried collapsible-icon-main"></i>
+                        <h3 class="collapsible-title">Sautéing</h3>
+                    </div>
+                    <i class="bi bi-chevron-down collapsible-icon-toggle"></i>
+                </div>
+                <div class="collapsible-content" id="content-sautéing" role="region" aria-labelledby="sautéing">
+                    <h4>Detailed Explanation:</h4>
+                    <p>Sautéing (from the French "sauter," meaning "to jump") is a dry-heat cooking method that uses a relatively small amount of oil or fat in a shallow pan over relatively high heat. Ingredients are typically cut into smaller, uniform pieces and are kept moving, either by tossing or stirring, to ensure even browning and cooking.</p>
+                    <p><strong>Why it's important:</strong> Sautéing develops rich flavors through Maillard browning and caramelization. It's quick, efficient, and preserves the texture and color of ingredients, especially vegetables (tender-crisp).</p>
+                    <h4>Step-by-Step Instructions:</h4>
                     <ol>
-                        <li><strong>Prep Ingredients:</strong> Cut food into uniform, bite-sized pieces for even cooking. Pat food dry, especially proteins, for better browning.</li>
-                        <li><strong>Heat the Pan:</strong> Choose a wide, shallow pan with sloped sides (a skillet or sauté pan). Heat the pan over medium-high heat <em>before</em> adding fat.</li>
-                        <li><strong>Add Fat:</strong> Once the pan is hot, add a small amount of oil or other fat (butter, ghee) – just enough to coat the bottom of the pan. The fat should shimmer or a drop of water should sizzle and evaporate quickly.</li>
-                        <li><strong>Add Food:</strong> Add the food to the hot pan in a single layer. Do not overcrowd the pan, as this will lower the temperature and cause the food to steam instead of sauté. Cook in batches if necessary.</li>
-                        <li><strong>Cook:</strong> Stir or toss the food frequently to ensure even cooking and browning. Cook until tender-crisp (for vegetables) or cooked through and browned (for meats).</li>
+                        <li><strong>Mise en Place:</strong> Have all ingredients prepped (chopped, measured) and near the stove. Sautéing is fast; you won't have time to chop once you start. Pat proteins dry for better browning.</li>
+                        <li><strong>Choose the Right Pan:</strong> A wide, shallow pan with sloped sides (sauté pan or skillet) is ideal. Material: Stainless steel, cast iron, or carbon steel are excellent. Heavy-bottomed pans provide even heat.</li>
+                        <li><strong>Heat the Pan:</strong> Place the empty pan over medium-high to high heat. Let it get thoroughly hot. A drop of water should evaporate instantly.</li>
+                        <li><strong>Add Fat:</strong> Add just enough oil or fat (clarified butter, ghee, high smoke point oils like grapeseed, canola, avocado) to coat the bottom of the pan. The fat should shimmer or a single piece of food should sizzle immediately.</li>
+                        <li><strong>Don't Overcrowd:</strong> Add ingredients in a single layer without overcrowding. Overcrowding lowers the pan temperature, causing food to steam instead of brown. Cook in batches if necessary.</li>
+                        <li><strong>Keep it Moving:</strong> Stir or toss food frequently for even cooking and to prevent burning. For a good sear on proteins, let them sit undisturbed for a minute or two before moving.</li>
+                        <li><strong>Season Appropriately:</strong> Season proteins before they go in the pan. Season vegetables during or after cooking.</li>
+                        <li><strong>Deglaze (Optional):</strong> After removing the main ingredients, add a liquid (wine, stock, vinegar) to the hot pan to dissolve the "fond" (tasty browned bits) and create a simple pan sauce. [4]</li>
                     </ol>
-                </dd>
-                <dt>Practical Tips for Mastery:</dt>
-                <dd>
+                    <h4>Practical Tips for Mastery:</h4>
                     <ul>
-                        <li><strong>Hot Pan, Hot Oil:</strong> Ensures food sears and doesn't stick.</li>
-                        <li><strong>Don't Overcrowd:</strong> This is a common mistake leading to steamed, pale food.</li>
-                        <li><strong>Uniform Pieces:</strong> Crucial for even cooking.</li>
-                        <li><strong>Listen to the Sizzle:</strong> A good sizzle indicates the heat is right. If it's too quiet, the pan isn't hot enough. If it's spattering wildly, it might be too hot.</li>
-                        <li><strong class="pro-tip">Deglazing (Pro-Tip):</strong> After sautéing, there might be browned bits (fond) stuck to the pan. These are packed with flavor! Remove the food, then add a little liquid (wine, broth, water) to the hot pan and scrape up the bits with a wooden spoon to incorporate them into a sauce.</li>
+                        <li><strong>Listen to the Pan:</strong> A gentle, consistent sizzle is good. Too quiet means not hot enough. Violent spattering means too hot.</li>
+                        <li><strong>Uniform Cuts are Key:</strong> Ensures everything cooks at the same rate.</li>
+                        <li><strong>High Smoke Point Fats:</strong> Especially important for high-heat sautéing to prevent the fat from breaking down and tasting acrid.</li>
+                        <li><strong>Finishing with Butter or Herbs:</strong> Adding a knob of cold butter ("monter au beurre") or fresh herbs off-heat at the end can enrich flavor and create a glossy sauce.</li>
                     </ul>
-                </dd>
-                <dt>Troubleshooting:</dt>
-                <dd>
+                    <h4>Common Mistakes & Troubleshooting:</h4>
+                        <dl>
+                            <dt>Food Steaming, Not Browning:</dt><dd>Pan overcrowded, pan not hot enough before adding food, or food was too wet. Solution: Increase heat, cook in smaller batches, pat food dry.</dd>
+                            <dt>Food Sticking:</dt><dd>Pan not hot enough when food/oil was added, not enough fat, or using a pan prone to sticking (e.g., older stainless steel with delicate items without proper technique). Solution: Ensure proper preheating, use adequate fat, consider a different pan for very delicate items if new to stainless.</dd>
+                            <dt>Uneven Cooking:</dt><dd>Pieces not uniform in size, pan has hot spots, or food not moved enough. Solution: Focus on knife skills, know your pan, stir/toss appropriately.</dd>
+                            <dt>Burning Aromatics (Garlic, Shallots):</dt><dd>Added too early to very hot oil. Solution: Add them later in the sautéing process once other ingredients have started to cook, or reduce heat slightly before adding them.</dd>
+                        </dl>
+                     <h4>Practice Drills:</h4>
+                        <dd><strong>Perfectly Sautéed Mushrooms:</strong> Aim for deeply browned, slightly crispy-edged mushrooms that haven't released all their water and become soggy. Use medium-high heat, don't overcrowd. </dd>
+                        <dd><strong>Quick Vegetable Medley:</strong> Sauté a mix of quick-cooking vegetables (e.g., bell peppers, zucchini, snap peas), aiming for tender-crisp texture and vibrant color.</dd>
+                    <h4>Key Resources & Further Learning:</h4>
                     <ul>
-                        <li class="troubleshooting-item"><strong>Food is Steaming, Not Browning:</strong> Pan is overcrowded, not hot enough, or food was too wet.</li>
-                        <li class="troubleshooting-item"><strong>Food is Sticking:</strong> Pan wasn't hot enough before adding food, not enough fat, or you're using a sticky pan (stainless steel can be tricky for beginners with delicate items like fish).</li>
-                        <li class="troubleshooting-item"><strong>Food is Burning:</strong> Heat is too high, or pieces are too small/thin for the heat level. Reduce heat and stir more frequently.</li>
+                        <li><a href="https://www.thekitchn.com/the-difference-between-a-saute-pan-and-a-skillet-word-of-mouth-166232" target="_blank">The Kitchn: Difference Between a Sauté Pan and a Skillet</a></li>
+                        <li><a href="https://www.youtube.com/results?search_query=how+to+saute+vegetables" target="_blank">Watch: How to Sauté Vegetables Perfectly (YouTube Search)</a></li>
+                        <li><a href="https://www.seriouseats.com/pan-seared-chicken-breasts-recipe-5218647" target="_blank">Serious Eats: Pan-Seared Chicken Breasts (demonstrates sauté/sear technique)</a></li>
+                        <li><a href="https://www.seriouseats.com/cooking-fats-101-whats-a-smoke-point-and-why-does-it-matter" target="_blank">Guide to Cooking Oil Smoke Points by Serious Eats</a></li>
                     </ul>
-                </dd>
-                <dt>Practice Drill:</dt>
-                <dd class="practice-drill">Sauté sliced mushrooms. Aim for golden brown and slightly crispy edges without burning. Or, sauté diced chicken breast for a quick stir-fry.</dd>
-            </dl>
-        </article>
-
-        <article class="technique">
-            <h3>3. Roasting</h3>
-            <dl>
-                <dt>Explanation:</dt>
-                <dd>To cook food with dry heat in an oven, usually uncovered. This method creates browning and caramelization, resulting in deep flavors and often a crispy exterior with a tender interior.</dd>
-                <dt>Step-by-Step Instructions:</dt>
-                <dd>
+                </div>
+            </div>
+
+            <div class="collapsible-item" id="roasting">
+                <div class="collapsible-header" role="button" tabindex="0" aria-expanded="false" aria-controls="content-roasting">
+                    <div class="collapsible-title-group">
+                        <i class="bi bi-oven collapsible-icon-main"></i>
+                        <h3 class="collapsible-title">Roasting</h3>
+                    </div>
+                    <i class="bi bi-chevron-down collapsible-icon-toggle"></i>
+                </div>
+                <div class="collapsible-content" id="content-roasting" role="region" aria-labelledby="roasting">
+                    <h4>Detailed Explanation:</h4>
+                    <p>Roasting is a dry-heat cooking method that uses hot, circulated air in an oven to cook food. It's excellent for developing deep brown color, crispy exteriors, and tender interiors, especially for larger cuts of meat, poultry, and vegetables. The high heat promotes caramelization and the Maillard reaction, creating complex flavors.</p>
+                    <p><strong>Why it's important:</strong> Roasting is versatile, allowing for minimal hands-on time while achieving impressive results. It's ideal for creating succulent meats with crispy skin and vegetables with concentrated sweetness.</p>
+                    <h4>Step-by-Step Instructions:</h4>
                     <ol>
-                        <li><strong>Preheat Oven:</strong> Always preheat your oven to the temperature specified in the recipe (typically between 350-450°F / 175-230°C). Use an oven thermometer to verify accuracy.</li>
-                        <li><strong>Prep Ingredients:</strong>
-                            <ul>
-                                <li>Cut vegetables or meat into uniform pieces for even cooking.</li>
-                                <li>Toss with a small amount of oil (olive, avocado, etc.) to promote browning and prevent sticking.</li>
-                                <li>Season generously with salt, pepper, and other desired herbs/spices.</li>
-                            </ul>
+                        <li><strong>Preheat Oven:</strong> Always preheat your oven to the temperature specified in the recipe (typically between 350°F/175°C and 450°F/230°C). Use an oven thermometer for accuracy.</li>
+                        <li><strong>Prepare Ingredients:</strong>
+                            <br>- <em>Meats/Poultry:</em> Pat dry with paper towels for better browning. Season generously. Consider trussing poultry for even cooking.
+                            <br>- <em>Vegetables:</em> Cut into uniform pieces for even cooking. Toss with a light coating of oil and seasonings.
                         </li>
-                        <li><strong>Arrange on Pan:</strong> Spread ingredients in a single layer on a baking sheet or in a roasting pan. Avoid overcrowding, which leads to steaming instead of roasting. Use multiple pans if necessary.</li>
-                        <li><strong>Roast:</strong> Place the pan in the preheated oven. Roasting times vary greatly depending on the food type, size, and oven temperature.</li>
-                        <li><strong>Flip/Stir (Optional but Recommended):</strong> For even browning, you may need to flip larger items (like chicken pieces) or stir vegetables halfway through cooking.</li>
-                        <li><strong>Check for Doneness:</strong> Vegetables should be tender and browned. Meats should reach their safe internal temperature (use a meat thermometer).</li>
+                        <li><strong>Choose Roasting Pan:</strong> Use a sturdy roasting pan, ideally with a rack for meats/poultry to allow air circulation for even cooking and crisping. For vegetables, a heavy-duty rimmed baking sheet is often best. Avoid overcrowding the pan.</li>
+                        <li><strong>Arrange Food:</strong> Place meat/poultry on the rack or directly in the pan. Arrange vegetables in a single layer.</li>
+                        <li><strong>Roast:</strong> Place the pan in the preheated oven. Avoid opening the oven door too frequently, as this causes temperature fluctuations.</li>
+                        <li><strong>Monitor & Baste (if applicable):</strong> For larger roasts, you might baste with pan juices or other liquids to keep them moist. Use a meat thermometer to check for doneness.</li>
+                        <li><strong>Rest (for meats/poultry):</strong> Once cooked, remove meats/poultry from the oven, tent loosely with foil, and let rest for 10-20 minutes (or longer for very large roasts) before carving. This allows juices to redistribute, resulting in a more tender and flavorful dish.</li>
                     </ol>
-                </dd>
-                <dt>Practical Tips for Mastery:</dt>
-                <dd>
+                    <h4>Practical Tips for Mastery:</h4>
                     <ul>
-                        <li><strong>Don't Overcrowd the Pan:</strong> This is key for browning.</li>
-                        <li><strong>Use Enough Oil (But Not Too Much):</strong> A light coating is all that's needed.</li>
-                        <li><strong>High Heat for Browning:</strong> Higher temperatures generally lead to better browning and crispier results, especially for vegetables.</li>
-                        <li><strong>Consider a Rack:</strong> For larger cuts of meat, roasting on a rack allows hot air to circulate for more even cooking and helps fat drip away.</li>
-                        <li><strong>Rest Meats:</strong> After roasting, let meats rest for 5-15 minutes (depending on size) before carving to allow juices to redistribute, resulting in a more tender and flavorful outcome.</li>
+                        <li><strong>Don't Overcrowd the Pan:</strong> This leads to steaming rather than roasting. Use multiple pans if necessary.</li>
+                        <li><strong>Use an Oven Thermometer:</strong> Oven thermostats can be inaccurate.</li>
+                        <li><strong>Elevate Meats:</strong> Using a rack helps hot air circulate around the meat for even cooking and browning. If no rack, use roughly chopped root vegetables as a natural rack.</li>
+                        <li><strong>High Heat for Browning, Lower for Cooking Through:</strong> Sometimes starting at a high heat for initial browning, then reducing the temperature to cook through, is effective, especially for larger cuts.</li>
+                        <li><strong>Consider Carryover Cooking:</strong> Food continues to cook after being removed from the oven. Factor this in, especially for meats, removing them a few degrees below the final target temperature.</li>
                     </ul>
-                </dd>
-                <dt>Troubleshooting:</dt>
-                <dd>
+                    <h4>Common Mistakes & Troubleshooting:</h4>
+                        <dl>
+                            <dt>Food is Steamed, Not Browned/Crisped:</dt><dd>Oven not hot enough, pan overcrowded, or too much moisture. Solution: Increase oven temp, use less food per pan, pat food dry.</dd>
+                            <dt>Uneven Cooking:</dt><dd>Hot spots in oven, food not uniform in size, or pan overcrowded. Solution: Rotate pan during cooking, cut food uniformly, ensure good air circulation.</dd>
+                            <dt>Dry Meat:</dt><dd>Overcooked, not rested properly, or lean cut cooked too long at high heat without added fat/moisture. Solution: Use a meat thermometer, rest meat, consider brining or basting for lean cuts.</dd>
+                            <dt>Burnt Exterior, Raw Interior:</dt><dd>Oven temperature too high for the size/type of food. Solution: Reduce oven temperature, consider starting high then lowering, or use a two-stage cooking method.</dd>
+                        </dl>
+                     <h4>Practice Drills:</h4>
+                        <dd><strong>Perfect Roasted Chicken:</strong> Aim for crispy skin and juicy meat. Experiment with different seasonings and trussing techniques.</dd>
+                        <dd><strong>Caramelized Roasted Vegetables:</strong> Toss root vegetables (carrots, potatoes, parsnips) or cruciferous vegetables (broccoli, Brussels sprouts) with oil and roast at high heat (400-425°F / 200-220°C) until tender and browned.</dd>
+                    <h4>Key Resources & Further Learning:</h4>
                     <ul>
-                        <li class="troubleshooting-item"><strong>Food is Steamed, Not Browned:</strong> Pan was overcrowded, oven temperature was too low, or too much moisture.</li>
-                        <li class="troubleshooting-item"><strong>Food is Burnt on Outside, Raw on Inside:</strong> Oven temperature is too high. Reduce temperature and cook longer. Tent with foil if browning too quickly.</li>
-                        <li class="troubleshooting-item"><strong>Vegetables are Soggy:</strong> Overcrowding or not enough heat.</li>
+                        <li><a href="https://www.seriouseats.com/roasting-tips-techniques" target="_blank">Serious Eats: Roasting Tips & Techniques</a></li>
+                        <li><a href="https://www.thekitchn.com/how-to-roast-any-vegetable-1 roasting-any-vegetable-107859" target="_blank">The Kitchn: How To Roast Any Vegetable</a></li>
+                        <li><a href="https://www.youtube.com/results?search_query=how+to+roast+a+whole+chicken" target="_blank">Watch: How to Roast a Whole Chicken (YouTube Search)</a></li>
                     </ul>
-                </dd>
-                <dt>Practice Drill:</dt>
-                <dd class="practice-drill">Roast broccoli florets or cubed sweet potatoes. Toss with olive oil, salt, and pepper. Roast at 400°F (200°C) until tender and browned.</dd>
-            </dl>
-        </article>
-
-        <article class="technique">
-            <h3>4. Braising</h3>
-            <dl>
-                <dt>Explanation:</dt>
-                <dd>A combination cooking method that involves first searing food (usually meat) in fat, then simmering it slowly in a covered pot with a small amount of liquid. This technique is excellent for tenderizing tougher cuts of meat, transforming them into fall-apart succulent dishes.</dd>
-                <dt>Step-by-Step Instructions:</dt>
-                <dd>
+                </div>
+            </div>
+
+            <div class="collapsible-item" id="braising">
+                <div class="collapsible-header" role="button" tabindex="0" aria-expanded="false" aria-controls="content-braising">
+                    <div class="collapsible-title-group">
+                        <i class="bi bi-box-seam-fill collapsible-icon-main"></i>
+                        <h3 class="collapsible-title">Braising</h3>
+                    </div>
+                    <i class="bi bi-chevron-down collapsible-icon-toggle"></i>
+                </div>
+                <div class="collapsible-content" id="content-braising" role="region" aria-labelledby="braising">
+                    <h4>Detailed Explanation:</h4>
+                    <p>Braising is a combination cooking method that starts with searing food (usually tougher cuts of meat) in fat, then simmering it slowly in a covered pot with a small amount of liquid (stock, wine, etc.). This long, slow process breaks down tough connective tissues, resulting in exceptionally tender and flavorful dishes. [6, 23]</p>
+                    <p><strong>Why it's important:</strong> Braising transforms less expensive, tougher cuts of meat into succulent, fall-apart tender meals. The cooking liquid also becomes a rich, flavorful sauce. [6, 12]</p>
+                    <h4>Step-by-Step Instructions:</h4>
                     <ol>
-                        <li><strong>Sear the Meat:</strong> Pat the meat dry and season generously. Heat a small amount of fat in a heavy-bottomed pot (like a Dutch oven) over medium-high heat. Sear the meat on all sides until deeply browned. This develops flavor (Maillard reaction). Remove meat and set aside.</li>
-                        <li><strong>SautĂ© Aromatics:</strong> Add chopped vegetables (like onions, carrots, celery – mirepoix) to the same pot and cook until softened and lightly browned (about 5-8 minutes). Add garlic, herbs, or spices in the last minute.</li>
-                        <li><strong>Deglaze (Optional but Recommended):</strong> Pour in a liquid like wine, stock, or even water to scrape up any browned bits (fond) from the bottom of the pot. This adds immense flavor to the braising liquid.</li>
-                        <li><strong>Return Meat & Add Liquid:</strong> Return the seared meat to the pot. Add enough braising liquid (stock, wine, tomatoes, water) to come about halfway to two-thirds up the sides of the meat. The meat should not be fully submerged.</li>
-                        <li><strong>Simmer Gently:</strong> Bring the liquid to a simmer, then reduce the heat to low, cover the pot tightly, and cook gently for a long period (typically 1.5 to several hours, depending on the cut and size). Braising can be done on the stovetop or in a low oven (e.g., 300-325°F / 150-160°C).</li>
-                        <li><strong>Check for Doneness:</strong> The meat should be fork-tender, meaning it pulls apart easily.</li>
-                        <li><strong>Make Sauce (Optional):</strong> Remove the meat. The remaining braising liquid can be strained and/or thickened (by simmering to reduce or with a slurry of cornstarch/flour and water) to create a rich sauce.</li>
+                        <li><strong>Prepare Meat:</strong> Pat the meat dry and season generously with salt and pepper.</li>
+                        <li><strong>Sear Meat:</strong> Heat a small amount of fat in a heavy-bottomed pot or Dutch oven over medium-high heat. Sear the meat on all sides until well-browned. Remove meat and set aside. [12]</li>
+                        <li><strong>Sauté Aromatics:</strong> Add aromatic vegetables (like onions, carrots, celery - mirepoix) to the same pot and cook until softened, scraping up any browned bits (fond) from the bottom of the pan. [6]</li>
+                        <li><strong>Deglaze:</strong> Add a splash of liquid (wine, stock) to the pot, scraping the bottom to loosen any remaining browned bits. Let the liquid reduce slightly. [4]</li>
+                        <li><strong>Return Meat & Add Liquid:</strong> Return the meat to the pot. Add enough braising liquid (stock, wine, canned tomatoes, etc.) to come about one-third to one-half way up the sides of the meat. [6] The meat should not be fully submerged. [23]</li>
+                        <li><strong>Add Flavorings:</strong> Add herbs, spices, or other flavorings (bay leaves, thyme, garlic).</li>
+                        <li><strong>Simmer Gently:</strong> Bring the liquid to a gentle simmer, then cover the pot tightly. Transfer to a preheated low oven (typically 275-325°F / 135-160°C) or continue to simmer very gently on the stovetop. [12]</li>
+                        <li><strong>Cook Until Tender:</strong> Braise for several hours, or until the meat is fork-tender. Cooking time will vary depending on the cut and size of the meat. [12]</li>
+                        <li><strong>Rest & Make Sauce:</strong> Once tender, remove the meat from the pot and let it rest. The remaining braising liquid can be strained, skimmed of fat, and reduced or thickened to create a sauce. [6]</li>
                     </ol>
-                </dd>
-                <dt>Practical Tips for Mastery:</dt>
-                <dd>
+                    <h4>Practical Tips for Mastery:</h4>
                     <ul>
-                        <li><strong>Deep Sear:</strong> Don't rush the searing step; good browning equals deep flavor.</li>
-                        <li><strong>Low and Slow:</strong> Gentle, prolonged cooking is key to breaking down tough connective tissues (collagen) into gelatin, making the meat tender and luscious.</li>
-                        <li><strong>Tight-Fitting Lid:</strong> Prevents too much liquid from evaporating.</li>
-                        <li><strong>Tougher Cuts Work Best:</strong> Cuts like chuck roast, short ribs, lamb shanks, or pork shoulder are ideal for braising.</li>
-                        <li><strong>Better the Next Day:</strong> Braised dishes often taste even better the next day as flavors meld. Cool and refrigerate, then skim off any solidified fat before reheating.</li>
+                        <li><strong>Choose the Right Cut:</strong> Tougher, collagen-rich cuts like chuck roast, pork shoulder, lamb shanks, or short ribs are ideal for braising. [23]</li>
+                        <li><strong>Don't Rush Searing:</strong> A deep, brown sear builds significant flavor.</li>
+                        <li><strong>Low and Slow is Key:</strong> Maintain a gentle simmer, not a rolling boil, to ensure tenderness.</li>
+                        <li><strong>Tight-Fitting Lid:</strong> Prevents moisture from escaping and keeps the environment steamy.</li>
+                        <li><strong>Taste and Adjust Sauce:</strong> Season the final sauce to perfection. A touch of acidity (vinegar, lemon juice) can brighten flavors.</li>
                     </ul>
-                </dd>
-                <dt>Troubleshooting:</dt>
-                <dd>
+                    <h4>Common Mistakes & Troubleshooting:</h4>
+                        <dl>
+                            <dt>Tough Meat:</dt><dd>Under-braised or cooked at too high a temperature. Solution: Continue cooking at a lower temperature until tender. Ensure enough liquid to keep meat moist. [14]</dd>
+                            <dt>Dry Meat:</dt><dd>Too little liquid, lid not tight enough, or cooked too long after becoming tender. Solution: Ensure proper liquid level and a good seal. Don't overcook once tender.</dd>
+                            <dt>Bland Flavor:</dt><dd>Insufficient searing, under-seasoning, or weak braising liquid. Solution: Ensure a good sear, season meat and liquid well, use flavorful stock/wine.</dd>
+                            <dt>Sauce is Too Thin:</dt><dd>Liquid not reduced enough. Solution: Remove meat and simmer the liquid uncovered until it thickens to desired consistency. Optionally, thicken with a cornstarch slurry or a beurre manié (flour-butter paste).</dd>
+                        </dl>
+                     <h4>Practice Drills:</h4>
+                        <dd><strong>Classic Beef Bourguignon:</strong> A French stew (technically a braise of smaller pieces) that showcases all the key braising steps.</dd>
+                        <dd><strong>Braised Short Ribs:</strong> Practice searing and achieving fork-tender results with this flavorful cut.</dd>
+                    <h4>Key Resources & Further Learning:</h4>
                     <ul>
-                        <li class="troubleshooting-item"><strong>Meat is Tough:</strong> It likely needs more cooking time at a low temperature. Ensure there's enough liquid and the pot is covered.</li>
-                        <li class="troubleshooting-item"><strong>Sauce is Too Thin:</strong> Remove the meat and simmer the liquid uncovered until it reduces and thickens to your liking.</li>
-                        <li class="troubleshooting-item"><strong>Sauce is Too Greasy:</strong> Skim fat from the surface, or refrigerate the braise and remove the solidified fat layer.</li>
+                        <li><a href="https://www.seriouseats.com/what-is-braising-how-to-braise" target="_blank">Serious Eats: The Science of Braising</a></li>
+                        <li><a href="https://www.thekitchn.com/how-to-braise-meat-cooking-lessons-from-the-kitchn-108008" target="_blank">The Kitchn: How To Braise Meat</a>. [12]</li>
+                        <li><a href="https://www.youtube.com/results?search_query=how+to+braise+short+ribs" target="_blank">Watch: How to Braise Short Ribs (YouTube Search)</a></li>
+                        <li><a href="https://www.culinaryhill.com/what-is-braising/" target="_blank">Culinary Hill: What is Braising?</a></li>
                     </ul>
-                </dd>
-                <dt>Practice Drill:</dt>
-                <dd class="practice-drill">Braise beef short ribs or a small chuck roast. Serve with the resulting sauce and mashed potatoes or polenta.</dd>
-            </dl>
-        </article>
-
-        <article class="technique">
-            <h3>5. Poaching</h3>
-            <dl>
-                <dt>Explanation:</dt>
-                <dd>A gentle cooking method where food is submerged in a liquid (water, stock, milk, wine) that is kept just below a simmer, typically between 160-185°F (71-85°C). It's ideal for delicate foods like eggs, fish, chicken breasts, and fruit, as it cooks them evenly without drying them out and helps retain their moisture and delicate flavor.</dd>
-                <dt>Step-by-Step Instructions (e.g., Poaching an Egg):</dt>
-                <dd>
+                </div>
+            </div>
+
+            <div class="collapsible-item" id="poaching">
+                <div class="collapsible-header" role="button" tabindex="0" aria-expanded="false" aria-controls="content-poaching">
+                    <div class="collapsible-title-group">
+                        <i class="bi bi-droplet-half collapsible-icon-main"></i>
+                        <h3 class="collapsible-title">Poaching</h3>
+                    </div>
+                    <i class="bi bi-chevron-down collapsible-icon-toggle"></i>
+                </div>
+                <div class="collapsible-content" id="content-poaching" role="region" aria-labelledby="poaching">
+                    <h4>Detailed Explanation:</h4>
+                    <p>Poaching is a gentle moist-heat cooking method that involves submerging food in a liquid (water, stock, milk, or wine) that is kept just below a simmer, typically between 160-180°F (71-82°C). The liquid should show only slight movement, with very few, if any, bubbles breaking the surface.</p>
+                    <p><strong>Why it's important:</strong> Poaching is ideal for delicate foods like eggs, fish, chicken breasts, and fruit, as it cooks them evenly and gently without drying them out. It results in a tender, moist product and can infuse subtle flavors from the poaching liquid.</p>
+                    <h4>Step-by-Step Instructions:</h4>
                     <ol>
-                        <li><strong>Prepare Poaching Liquid:</strong> Fill a saucepan with about 3-4 inches of water. Add a splash of vinegar (like white vinegar, about 1-2 teaspoons per quart of water), which helps the egg whites set. Bring the water to a gentle simmer – you should see small bubbles forming at the bottom and occasionally rising, but not a rolling boil.</li>
-                        <li><strong>Prepare the Egg:</strong> Crack a fresh egg into a small ramekin or saucer. Fresher eggs hold their shape better.</li>
-                        <li><strong>Create a Vortex (Optional but helpful):</strong> Gently stir the simmering water to create a whirlpool. This helps the egg white wrap around the yolk.</li>
-                        <li><strong>Add the Egg:</strong> Carefully slide the egg from the ramekin into the center of the vortex or into the simmering water.</li>
-                        <li><strong>Poach:</strong> Cook for 3-5 minutes, depending on how runny you like your yolk. The white should be set, and the yolk still soft. You can gently spoon some hot water over the egg as it cooks.</li>
-                        <li><strong>Remove and Drain:</strong> Carefully lift the poached egg out with a slotted spoon. Dab gently with a paper towel to remove excess water if desired.</li>
+                        <li><strong>Choose Poaching Liquid:</strong> Select a liquid that complements the food (e.g., water with vinegar for eggs, chicken stock for chicken, white wine for fish, sugar syrup for fruit).</li>
+                        <li><strong>Prepare Food:</strong> Ensure the food is trimmed and prepared as needed. For eggs, crack them into individual small bowls.</li>
+                        <li><strong>Heat Liquid Gently:</strong> In a wide, shallow pan (for most items) or a deeper pot (for whole items), bring the poaching liquid to the desired temperature (160-180°F / 71-82°C). It should be barely simmering, with minimal surface movement. Do not let it boil. Add aromatics to the liquid if desired (herbs, spices, vegetables).</li>
+                        <li><strong>Add Food:</strong> Gently lower the food into the liquid. Ensure it's fully submerged, but don't overcrowd the pan; cook in batches if necessary.</li>
+                        <li><strong>Maintain Temperature:</strong> Adjust the heat as needed to keep the liquid at a consistent gentle temperature. Avoid boiling.</li>
+                        <li><strong>Cook Until Done:</strong> Poaching times vary greatly depending on the food.
+                            <br>- <em>Eggs:</em> 3-5 minutes for runny yolks.
+                            <br>- <em>Fish Fillets:</em> 5-10 minutes, until opaque and flakes easily.
+                            <br>- <em>Chicken Breasts (boneless, skinless):</em> 10-15 minutes, until internal temperature reaches 165°F (74°C).
+                        </li>
+                        <li><strong>Remove and Serve/Chill:</strong> Carefully remove the poached food with a slotted spoon. Serve immediately or chill for later use (e.g., poached chicken for salads).</li>
                     </ol>
-                </dd>
-                <dt>Practical Tips for Mastery:</dt>
-                <dd>
+                    <h4>Practical Tips for Mastery:</h4>
                     <ul>
-                        <li><strong>Gentle Heat:</strong> The key is to keep the liquid just below a simmer. Boiling will toughen delicate foods or break them apart.</li>
-                        <li><strong>Fresh Ingredients:</strong> Especially important for eggs; fresher eggs have firmer whites.</li>
-                        <li><strong>Flavorful Liquid:</strong> For fish or chicken, you can poach in stock, wine, or water infused with herbs (like parsley, thyme) and aromatics (like onion, celery, carrot) for added flavor.</li>
-                        <li><strong>Don't Overcrowd:</strong> Poach in batches if necessary to maintain liquid temperature and allow even cooking.</li>
+                        <li><strong>Temperature Control is Crucial:</strong> Use a thermometer to monitor the liquid temperature. Too hot, and it becomes simmering or boiling, toughening delicate items.</li>
+                        <li><strong>Flavorful Liquid:</strong> The poaching liquid can add significant flavor to the food. Season it well.</li>
+                        <li><strong>Don't Overcrowd:</strong> This lowers the liquid temperature and can lead to uneven cooking.</li>
+                        <li><strong>Shallow Poaching vs. Deep Poaching:</strong> Shallow poaching uses less liquid (food partially submerged, often with a buttered parchment lid called a cartouche). Deep poaching fully submerges the food.</li>
+                        <li><strong>For Poached Eggs:</strong> Add a splash of vinegar to the water to help the egg whites set. Create a gentle vortex in the water before sliding the egg in. Use very fresh eggs.</li>
                     </ul>
-                </dd>
-                <dt>Troubleshooting:</dt>
-                <dd>
+                    <h4>Common Mistakes & Troubleshooting:</h4>
+                        <dl>
+                            <dt>Food is Tough or Dry:</dt><dd>Poaching liquid was too hot (boiling instead of poaching), or food was overcooked. Solution: Monitor temperature closely, reduce heat, and cook only until done.</dd>
+                            <dt>Poached Eggs are Wispy/Fall Apart:</dt><dd>Eggs not fresh, water not acidic enough, or water agitated too much. Solution: Use very fresh eggs, add vinegar, be gentle when adding eggs.</dd>
+                            <dt>Bland Food:</dt><dd>Poaching liquid was unseasoned or not flavorful. Solution: Season the poaching liquid well with salt, herbs, spices, or use a flavorful stock/wine.</dd>
+                        </dl>
+                     <h4>Practice Drills:</h4>
+                        <dd><strong>Perfect Poached Eggs:</strong> Aim for neatly formed whites and runny yolks. Practice controlling the water temperature and the egg-dropping technique.</dd>
+                        <dd><strong>Delicate Poached Fish (e.g., Salmon or Cod):</strong> Focus on maintaining a gentle temperature and cooking until just opaque and flaky.</dd>
+                    <h4>Key Resources & Further Learning:</h4>
                     <ul>
-                        <li class="troubleshooting-item"><strong>Poached Eggs are Wispy/Spreading:</strong> Egg might not be fresh, water too hot (boiling), or no vinegar used. Try straining very loose whites through a fine-mesh sieve before poaching.</li>
-                        <li class="troubleshooting-item"><strong>Food is Tough or Rubbery:</strong> Liquid was too hot, or it was cooked for too long.</li>
+                        <li><a href="https://www.seriouseats.com/how-to-poach-eggs-easy-way-foolproof-technique-video" target="_blank">Serious Eats: Foolproof Poached Eggs</a></li>
+                        <li><a href="https://www.thekitchn.com/how-to-poach-chicken-228320" target="_blank">The Kitchn: How To Poach Chicken</a></li>
+                        <li><a href="https://www.youtube.com/results?search_query=poaching+fish+technique" target="_blank">Watch: Poaching Fish Techniques (YouTube Search)</a></li>
                     </ul>
-                </dd>
-                <dt>Practice Drill:</dt>
-                <dd class="practice-drill">Poach an egg. Aim for a set white and a runny yolk. Try poaching a boneless, skinless chicken breast in chicken broth with herbs until cooked through.</dd>
-            </dl>
-        </article>
-
-        <article class="technique">
-            <h3>6. Blanching</h3>
-            <dl>
-                <dt>Explanation:</dt>
-                <dd>A technique where food, usually vegetables or fruit, is briefly cooked in boiling water and then quickly submerged in ice water (an "ice bath") to stop the cooking process.</dd>
-                <dt>Why it's important:</dt>
-                <dd>
-                    <ul>
-                        <li><strong>Retains Color:</strong> Helps vegetables maintain their vibrant color.</li>
-                        <li><strong>Preserves Texture:</strong> Keeps vegetables crisp-tender.</li>
-                        <li><strong>Loosens Skins:</strong> Makes peeling some fruits and vegetables (like tomatoes or peaches) easier.</li>
-                        <li><strong>Reduces Bitterness:</strong> Can mellow strong flavors in some vegetables.</li>
-                        <li><strong>Prepares for Freezing:</strong> Deactivates enzymes that can cause loss of flavor, color, and texture during freezing.</li>
-                        <li><strong>Cleanses:</strong> Removes surface dirt and microorganisms.</li>
-                    </ul>
-                </dd>
-                <dt>Step-by-Step Instructions:</dt>
-                <dd>
+                </div>
+            </div>
+
+            <div class="collapsible-item" id="blanching">
+                <div class="collapsible-header" role="button" tabindex="0" aria-expanded="false" aria-controls="content-blanching">
+                    <div class="collapsible-title-group">
+                        <i class="bi bi-thermometer-snow collapsible-icon-main"></i>
+                        <h3 class="collapsible-title">Blanching & Shocking</h3>
+                    </div>
+                    <i class="bi bi-chevron-down collapsible-icon-toggle"></i>
+                </div>
+                <div class="collapsible-content" id="content-blanching" role="region" aria-labelledby="blanching">
+                    <h4>Detailed Explanation:</h4>
+                    <p><strong>Blanching</strong> is a cooking process wherein food, usually vegetables or fruits, is briefly scalded in boiling water or steam for a short, timed interval. [32] <strong>Shocking</strong> is the immediate follow-up step: plunging the blanched food into ice water (an ice bath) or running it under cold water to halt the cooking process. [32, 5]</p>
+                    <p><strong>Why it's important:</strong> Blanching serves several purposes:
+                        <br>- Sets vibrant color (especially for green vegetables). [40]
+                        <br>- Softens texture slightly (tender-crisp).
+                        <br>- Removes bitterness or strong flavors in some vegetables.
+                        <br>- Loosens skins (e.g., for tomatoes or peaches, making them easier to peel). [40]
+                        <br>- Cleanses the surface of dirt and microorganisms. [35]
+                        <br>- Prepares vegetables for further cooking (e.g., stir-frying, sautéing) or for freezing (stops enzyme action that causes loss of flavor, color, and texture). [35]</p>
+                    <h4>Step-by-Step Instructions:</h4>
                     <ol>
-                        <li><strong>Prepare Ice Bath:</strong> Fill a large bowl with ice and a little cold water. Set aside.</li>
-                        <li><strong>Boil Water:</strong> Bring a large pot of water to a rolling boil. Use plenty of water (about 1 gallon per pound of vegetables). You can add salt to the water if desired.</li>
-                        <li><strong>Add Vegetables:</strong> Carefully add the prepared vegetables to the boiling water. Do not overcrowd; the water should return to a boil within a minute.</li>
-                        <li><strong>Blanch:</strong> Cook for a short period, typically 1-5 minutes, depending on the vegetable and its size. (e.g., green beans 2-3 mins, broccoli florets 3 mins, asparagus 1-2 mins, spinach 30 seconds). Vegetables should be bright in color and tender-crisp.</li>
-                        <li><strong>Shock in Ice Bath:</strong> Immediately remove the vegetables from the boiling water with a slotted spoon or spider and plunge them into the ice bath. This stops the cooking process rapidly.</li>
-                        <li><strong>Drain:</strong> Once completely cooled (1-2 minutes in the ice bath), remove the vegetables and drain them thoroughly. Pat dry if needed.</li>
+                        <li><strong>Prepare Ice Bath:</strong> Fill a large bowl with equal parts ice and cold water. Set aside.</li>
+                        <li><strong>Boil Water:</strong> Bring a large pot of water to a rolling boil. Use plenty of water so the temperature doesn't drop significantly when vegetables are added. Salt the water generously (like pasta water); this enhances flavor and can help maintain color. [35, 32]</li>
+                        <li><strong>Prepare Vegetables:</strong> Wash and cut vegetables into uniform pieces for even cooking. [32]</li>
+                        <li><strong>Blanch:</strong> Carefully add the vegetables to the boiling water. Do not overcrowd the pot; blanch in batches if necessary. [32] The water should return to a boil quickly. Start timing once the water returns to a boil. Blanching times vary by vegetable (e.g., green beans: 2-3 minutes; broccoli florets: 1-2 minutes; spinach: 30 seconds). [37]</li>
+                        <li><strong>Remove Vegetables:</strong> Once blanched to desired tenderness (usually tender-crisp), quickly remove the vegetables with a slotted spoon or spider.</li>
+                        <li><strong>Shock:</strong> Immediately transfer the blanched vegetables to the ice bath. [5, 40] This stops the cooking process and preserves their color and texture.</li>
+                        <li><strong>Drain:</strong> Once completely cooled (usually 1-2 minutes), remove the vegetables from the ice bath and drain thoroughly. Pat dry if using immediately in a dry-heat cooking method like sautéing. [5]</li>
                     </ol>
-                </dd>
-                <dt>Practical Tips for Mastery:</dt>
-                <dd>
+                    <h4>Practical Tips for Mastery:</h4>
                     <ul>
-                        <li><strong>Work Quickly:</strong> Have your ice bath ready before you start blanching.</li>
-                        <li><strong>Don't Overcrowd the Pot:</strong> This ensures the water temperature stays high and vegetables cook evenly. Blanch in batches if necessary.</li>
-                        <li><strong>Timing is Crucial:</strong> Over-blanching will result in mushy vegetables. Under-blanching won't deactivate enzymes effectively for freezing. Refer to blanching time charts for specific vegetables.</li>
+                        <li><strong>Use a Large Pot of Water:</strong> This ensures the water temperature doesn't drop too much when vegetables are added, allowing it to return to a boil quickly. [38]</li>
+                        <li><strong>Salt the Water:</strong> Enhances flavor and can help vegetables retain their bright color. [35]</li>
+                        <li><strong>Don't Overcrowd:</strong> Blanch in batches to maintain a rolling boil. [32]</li>
+                        <li><strong>Timing is Key:</strong> Over-blanching results in mushy vegetables. Under-blanching won't achieve the desired effect. Refer to blanching time charts for specific vegetables.</li>
+                        <li><strong>Shock Thoroughly:</strong> Ensure vegetables are completely cooled in the ice bath to stop cooking. [38]</li>
                     </ul>
-                </dd>
-                <dt>Troubleshooting:</dt>
-                <dd>
+                    <h4>Common Mistakes & Troubleshooting:</h4>
+                        <dl>
+                            <dt>Vegetables are Mushy or Overcooked:</dt><dd>Blanched for too long or not shocked quickly/thoroughly enough. [5] Solution: Time carefully, shock immediately in a very cold ice bath.</dd>
+                            <dt>Vegetables Lose Their Bright Color:</dt><dd>Overcooked, or sometimes under-blanched if enzymes aren't deactivated (more relevant for freezing). Not shocking properly can also lead to dull color. [5] Solution: Precise timing and immediate, thorough shocking.</dd>
+                            <dt>Water Takes Too Long to Return to Boil:</dt><dd>Too many vegetables added at once, or not enough initial boiling water. Solution: Blanch in smaller batches, use a larger pot of water. [38]</dd>
+                            <dt>Vegetables are Waterlogged:</dt><dd>Left in the ice bath for too long after cooling. [5] Solution: Remove from ice bath as soon as cool, drain well.</dd>
+                        </dl>
+                     <h4>Practice Drills:</h4>
+                        <dd><strong>Blanched Green Beans:</strong> Aim for bright green, tender-crisp beans. Perfect for salads or as a side dish.</dd>
+                        <dd><strong>Blanched Broccoli Florets:</strong> Get vibrant green florets ready for a quick sauté or to add to a veggie platter.</dd>
+                    <h4>Key Resources & Further Learning:</h4>
                     <ul>
-                        <li class="troubleshooting-item"><strong>Vegetables are Dull/Mushy:</strong> Overcooked. Reduce blanching time.</li>
-                        <li class="troubleshooting-item"><strong>Vegetables Still Raw:</strong> Undercooked. Increase blanching time slightly.</li>
+                        <li><a href="https://www.seriouseats.com/how-to-blanch-vegetables-cooking-guide" target="_blank">Serious Eats: The Science of Blanching Vegetables</a>. [38]</li>
+                        <li><a href="https://www.thekitchn.com/how-to-blanch-vegetables-233026" target="_blank">The Kitchn: How to Blanch Vegetables</a></li>
+                        <li><a href="https://www.youtube.com/results?search_query=how+to+blanch+and+shock+vegetables" target="_blank">Watch: How to Blanch and Shock Vegetables (YouTube Search)</a>. [32]</li>
+                        <li><a href="https://www.foodnetwork.com/how-to/articles/how-to-blanch-vegetables" target="_blank">Food Network: How to Blanch Vegetables</a></li>
                     </ul>
-                </dd>
-                <dt>Practice Drill:</dt>
-                <dd class="practice-drill">Blanch green beans. Aim for bright green, crisp-tender beans. Or blanch tomatoes to easily remove their skins for sauce.</dd>
-            </dl>
-        </article>
-
-        <article class="technique">
-            <h3>7. Searing</h3>
-            <dl>
-                <dt>Explanation:</dt>
-                <dd>A technique used to cook the surface of food (usually meat, poultry, or fish) at a high temperature until a browned, flavorful crust forms. This is primarily for flavor and texture development (Maillard reaction), not necessarily to cook the food all the way through, which might be done by a subsequent cooking method (like roasting or braising).</dd>
-                <dt>Step-by-Step Instructions:</dt>
-                <dd>
+                </div>
+            </div>
+
+            <div class="collapsible-item" id="searing">
+                <div class="collapsible-header" role="button" tabindex="0" aria-expanded="false" aria-controls="content-searing">
+                    <div class="collapsible-title-group">
+                        <i class="bi bi-brightness-high-fill collapsible-icon-main"></i>
+                        <h3 class="collapsible-title">Searing</h3>
+                    </div>
+                    <i class="bi bi-chevron-down collapsible-icon-toggle"></i>
+                </div>
+                <div class="collapsible-content" id="content-searing" role="region" aria-labelledby="searing">
+                    <h4>Detailed Explanation:</h4>
+                    <p>Searing is a technique used to cook the surface of food (usually meat, poultry, or fish) at a high temperature until a browned crust forms. This is primarily due to the Maillard reaction, a complex set of chemical reactions between amino acids and reducing sugars that gives browned food its distinctive flavor and aroma.</p>
+                    <p><strong>Why it's important:</strong> Searing creates a flavorful, deeply browned, and often crispy crust, adding texture and complexity to the dish. While it was once believed to "seal in juices," its main benefit is flavor development. [39]</p>
+                    <h4>Step-by-Step Instructions:</h4>
                     <ol>
-                        <li><strong>Pat Food Dry:</strong> Moisture is the enemy of a good sear. Thoroughly pat the surface of the food dry with paper towels.</li>
-                        <li><strong>Season Generously:</strong> Season all sides of the food with salt and pepper just before searing.</li>
-                        <li><strong>Choose the Right Pan:</strong> A heavy-bottomed pan that conducts and retains heat well is ideal (cast iron, heavy stainless steel).</li>
-                        <li><strong>Heat Pan and Fat:</strong> Place the pan over medium-high to high heat. Add a small amount of oil with a high smoke point (e.g., canola, grapeseed, avocado, clarified butter). The oil should be shimmering and just beginning to smoke.</li>
-                        <li><strong>Add Food:</strong> Carefully place the food in the hot pan. Do not overcrowd; leave space between pieces. If necessary, sear in batches.</li>
-                        <li><strong>Don't Move It Too Soon:</strong> Let the food develop a good crust before attempting to move or flip it. It will release from the pan more easily once a good sear is formed (typically 2-5 minutes per side, depending on the food and heat).</li>
-                        <li><strong>Sear All Sides:</strong> Flip and sear other sides as needed.</li>
-                        <li><strong>Finish Cooking (if necessary):</strong> If the food is thick, searing might only cook the outside. You may need to finish cooking it in the oven or by another method.</li>
+                        <li><strong>Prepare Food:</strong> Pat the food completely dry with paper towels. Moisture is the enemy of a good sear and will cause steaming. [7, 14, 28] Season generously with salt and pepper just before searing, or well in advance if dry brining. [14, 45] Let meat come to room temperature for about 20-30 minutes before cooking for more even results. [25, 15]</li>
+                        <li><strong>Choose the Right Pan:</strong> Use a heavy-bottomed pan that conducts and retains heat well, such as cast iron, carbon steel, or thick stainless steel. [2, 14] Avoid most non-stick pans as they are not designed for very high heat. [2]</li>
+                        <li><strong>Preheat Pan:</strong> Place the pan over medium-high to high heat and allow it to get very hot. This is crucial. [2, 33]</li>
+                        <li><strong>Add Fat:</strong> Add a small amount of high smoke point oil (e.g., grapeseed, canola, avocado, clarified butter) to the hot pan. The oil should shimmer and may just begin to smoke. [7, 14]</li>
+                        <li><strong>Add Food:</strong> Carefully place the food in the hot pan. Do not overcrowd the pan, as this will lower the temperature and cause steaming. [2, 14, 28] Cook in batches if necessary.</li>
+                        <li><strong>Sear Undisturbed:</strong> Let the food cook without moving it for several minutes until a deep brown crust forms. [2, 14] The food should release easily from the pan when it's ready to be flipped.</li>
+                        <li><strong>Flip and Sear Other Side:</strong> Flip the food and sear the other side(s) until equally browned. For thicker cuts, you might also sear the edges. [33, 45]</li>
+                        <li><strong>Finish Cooking (if necessary):</strong> For thicker cuts of meat that require more cooking after searing, you can transfer the pan to a preheated oven to finish cooking to the desired internal temperature. [7]</li>
+                        <li><strong>Rest (for meats):</strong> Allow seared meats to rest for 5-10 minutes before slicing to allow juices to redistribute. [2, 15, 25]</li>
                     </ol>
-                </dd>
-                <dt>Practical Tips for Mastery:</dt>
-                <dd>
+                    <h4>Practical Tips for Mastery:</h4>
                     <ul>
-                        <li><strong>Dry Surface = Good Crust:</strong> Cannot be overemphasized.</li>
-                        <li><strong>Hot Pan, Hot Oil:</strong> Essential for a quick, effective sear.</li>
-                        <li><strong>Don't Overcrowd:</strong> Lowers pan temperature, leading to steaming.</li>
-                        <li><strong>Patience:</strong> Resist the urge to move the food too early. Let the crust develop.</li>
-                        <li><strong>Ventilation:</strong> Searing at high heat can produce smoke, so ensure good ventilation (e.g., use your kitchen fan).</li>
+                        <li><strong>Dry Surface is Key:</strong> The drier the surface of the food, the better the sear. [7, 14]</li>
+                        <li><strong>Hot Pan, Hot Oil:</strong> Don't add food until the pan and oil are properly heated. [25, 33]</li>
+                        <li><strong>Don't Move It Too Soon:</strong> Resist the urge to peek or move the food until a good crust has formed. [2, 14]</li>
+                        <li><strong>Listen for the Sizzle:</strong> A strong, consistent sizzle indicates the pan is hot enough. If it's quiet or sounds like steaming, the pan isn't hot enough or is overcrowded.</li>
+                        <li><strong>Deglaze for Pan Sauce:</strong> After searing and removing the food, use the flavorful browned bits (fond) stuck to the pan to make a delicious pan sauce by deglazing with wine, stock, or other liquids. [14]</li>
                     </ul>
-                </dd>
-                <dt>Troubleshooting:</dt>
-                <dd>
+                    <h4>Common Mistakes & Troubleshooting:</h4>
+                        <dl>
+                            <dt>No Crust/Steamed Food:</dt><dd>Pan not hot enough, pan overcrowded, or food was wet. [2, 14, 28] Solution: Ensure pan is very hot, cook in batches, and pat food thoroughly dry. [15]</dd>
+                            <dt>Food Sticks to Pan:</dt><dd>Pan not hot enough when food was added, or food moved too soon before crust formed. [2] Solution: Preheat pan properly, use enough oil, and wait for crust to develop.</dd>
+                            <dt>Uneven Sear:</dt><dd>Pan has hot spots, or food not making even contact with the pan. Solution: Use a heavy-bottomed pan, don't overcrowd, ensure food lies flat.</dd>
+                            <dt>Smoky Kitchen:</dt><dd>Oil with a low smoke point used, or pan is too hot for the chosen oil. Solution: Use high smoke point oil, manage heat. [14] Adding butter too early can also cause smoke. [39]</dd>
+                        </dl>
+                     <h4>Practice Drills:</h4>
+                        <dd><strong>Pan-Seared Steak:</strong> Aim for a dark brown, even crust while keeping the interior cooked to your desired doneness. [45]</dd>
+                        <dd><strong>Seared Scallops:</strong> Practice getting a beautiful golden-brown crust on delicate scallops without overcooking them.</dd>
+                    <h4>Key Resources & Further Learning:</h4>
                     <ul>
-                        <li class="troubleshooting-item"><strong>No Crust/Pale Color:</strong> Pan/oil not hot enough, food was wet, or pan was overcrowded.</li>
-                        <li class="troubleshooting-item"><strong>Food Sticking:</strong> Pan wasn't hot enough when food was added, or you tried to move it too soon before the crust formed.</li>
-                        <li class="troubleshooting-item"><strong>Burnt Exterior, Raw Interior:</strong> Heat is too high for the thickness of the food. Sear quickly, then reduce heat or transfer to oven to finish cooking.</li>
+                        <li><a href="https://www.seriouseats.com/the-food-lab-guide-to-pan-seared-steaks-2" target="_blank">Serious Eats: The Food Lab's Guide to Pan-Seared Steaks</a>. [45]</li>
+                        <li><a href="https://www.thekitchn.com/how-to-cook-perfect-steak-in-the-oven-108490" target="_blank">The Kitchn: How To Cook Perfect Steak (often involves searing)</a>. [9]</li>
+                        <li><a href="https://www.youtube.com/results?search_query=how+to+get+a+perfect+sear" target="_blank">Watch: How to Get a Perfect Sear (YouTube Search)</a></li>
                     </ul>
-                </dd>
-                <dt>Practice Drill:</dt>
-                <dd class="practice-drill">Sear scallops or a steak. Aim for a deep brown, even crust.</dd>
-            </dl>
-        </article>
-
-        <article class="technique">
-            <h3>8. Sauce-Making</h3>
-            <p>Sauces can elevate a simple dish to something special. Here are three fundamental types:</p>
-            
-            <h4>a. Emulsification (e.g., Vinaigrettes, Mayonnaise)</h4>
-            <dl>
-                <dt>Explanation:</dt>
-                <dd>Combining two liquids that don't normally mix well (like oil and vinegar/water) into a stable or semi-stable mixture. An emulsifier (like egg yolk for mayonnaise, or mustard for vinaigrettes) helps to keep them combined.</dd>
-                <dt>Step-by-Step (Basic Vinaigrette):</dt>
-                <dd>
-                    <ol>
-                        <li><strong>Combine Acid & Flavorings:</strong> In a bowl, whisk together your acid (e.g., 1 part vinegar or lemon juice), mustard (e.g., 1 teaspoon Dijon – acts as an emulsifier), salt, and pepper. You can also add minced shallots, garlic, or herbs.</li>
-                        <li><strong>Slowly Drizzle Oil:</strong> While whisking constantly, slowly drizzle in the oil (e.g., 3 parts olive oil) in a thin, steady stream. Continue whisking vigorously until the oil is fully incorporated and the dressing looks thickened and homogenous.</li>
-                        <li><strong>Taste and Adjust:</strong> Taste and adjust seasoning (salt, pepper, more acid, or a pinch of sugar if too tart).</li>
-                    </ol>
-                </dd>
-                <dt>Tips for Mastery (Emulsification):</dt>
-                <dd>
+                </div>
+            </div>
+
+            <div class="collapsible-item" id="sauce-making">
+                <div class="collapsible-header" role="button" tabindex="0" aria-expanded="false" aria-controls="content-sauce-making">
+                    <div class="collapsible-title-group">
+                        <i class="bi bi-moisture collapsible-icon-main"></i>
+                        <h3 class="collapsible-title">Sauce-Making</h3>
+                    </div>
+                    <i class="bi bi-chevron-down collapsible-icon-toggle"></i>
+                </div>
+                <div class="collapsible-content" id="content-sauce-making" role="region" aria-labelledby="sauce-making">
+                    <h4>Detailed Explanation:</h4>
+                    <p>Sauces are liquid or semi-liquid preparations served with or used in preparing other foods. They add flavor, moisture, texture, and visual appeal to dishes. Mastering basic sauce-making techniques opens up a vast world of culinary possibilities. Key concepts include thickening agents, flavor building, and achieving the right consistency. [4, 48]</p>
+                    <p>The five "Mother Sauces" of French cuisine, codified by Auguste Escoffier, are foundational: Béchamel, Velouté, Espagnole, Hollandaise, and Tomate. [1, 18, 30] Many other sauces are derivatives of these. [24]</p>
+
+                    <dt>Fundamental Techniques:</dt>
+                    <dd><strong>Reduction:</strong> Simmering a liquid (stock, wine, juice) to evaporate water, which concentrates flavors and naturally thickens the sauce. [4, 21, 36] Pan sauces made after searing meat often rely on reduction. [27]</dd>
+                    <dd><strong>Roux:</strong> Cooking equal parts fat (usually butter) and flour to create a thickening paste. The color of the roux (white, blond, brown) depends on cooking time and impacts the final sauce flavor and color. [1, 21, 47]
+                        <br>- <em>White Roux:</em> Cooked briefly (2-3 mins), used for Béchamel, Velouté. [1]
+                        <br>- <em>Blond Roux:</em> Cooked a bit longer (5-6 mins) until pale golden, for Velouté and some Tomate variations. [1]
+                        <br>- <em>Brown Roux:</em> Cooked longer (8-15+ mins) until nutty and brown, for Espagnole. [1, 18]</dd>
+                    <dd><strong>Emulsification:</strong> Combining two liquids that don't normally mix, like oil and vinegar (vinaigrette) or butter and water/egg yolk (Hollandaise, Beurre Blanc). Requires vigorous whisking or blending and sometimes an emulsifier (like egg yolk or mustard) to stabilize. [1, 24]</dd>
+                    <dd><strong>Slurry:</strong> Mixing a cold liquid (water, stock) with a starch (cornstarch, arrowroot) and then whisking it into a simmering sauce to thicken. Must be cooked briefly to remove starchy taste.</dd>
+                    <dd><strong>Monter au Beurre:</strong> Whisking cold butter into a warm sauce off the heat to add richness, shine, and slight thickness. [29, 48]</dd>
+
+                    <h4>The Five Mother Sauces:</h4>
+                    <dl>
+                        <dt>1. Béchamel:</dt><dd>White sauce made from a white roux and milk, often flavored with onion, clove, and nutmeg. [1, 18] Derivatives include Mornay (cheese sauce), Soubise (onion sauce). [1, 24]</dd>
+                        <dt>2. VeloutĂ©:</dt><dd>Savory sauce made from a blond roux and a light stock (chicken, veal, or fish). [1, 6, 20] Derivatives include SuprĂȘme sauce (chicken veloutĂ© with cream), Allemande sauce (veal veloutĂ© enriched with egg yolks and cream). [24]</dd>
+                        <dt>3. Espagnole (Brown Sauce):</dt><dd>Rich brown sauce made from a brown roux, mirepoix, and brown stock (often veal). [1, 18] Foundation for demi-glace (Espagnole reduced with more brown stock), Bordelaise (red wine and shallot reduction). [24]</dd>
+                        <dt>4. Sauce Tomate (Tomato Sauce):</dt><dd>Traditionally thickened with roux (though modern versions often rely on reduction), made with tomatoes, aromatics, and stock. [1, 9] Derivatives include Provençale (garlic, herbs, sometimes olives/capers), Creole (peppers, onions, spices). [24]</dd>
+                        <dt>5. Hollandaise:</dt><dd>Emulsified sauce of butter, egg yolks, and lemon juice or vinegar. [1, 18] Served warm. Derivatives include Béarnaise (shallots, tarragon, chervil, vinegar reduction added), Mousseline (whipped cream folded in). [1, 24]</dd>
+                    </dl>
+
+                    <h4>Practical Tips for Mastery:</h4>
                     <ul>
-                        <li><strong>Slow Addition of Oil:</strong> This is crucial. Adding oil too quickly will cause the emulsion to "break" (separate).</li>
-                        <li><strong>Constant Whisking:</strong> Vigorous whisking helps break the oil into tiny droplets and disperse them.</li>
-                        <li><strong>Room Temperature Ingredients:</strong> For mayonnaise, room temperature egg yolks emulsify better.</li>
+                        <li><strong>Taste and Adjust:</strong> Constantly taste your sauce and adjust seasonings (salt, pepper, acid, sweetness) as needed.</li>
+                        <li><strong>Strain for Smoothness:</strong> For very smooth sauces, pass them through a fine-mesh sieve.</li>
+                        <li><strong>Proper Consistency (Nappé):</strong> A sauce should be thick enough to lightly coat the back of a spoon.</li>
+                        <li><strong>Prevent Skin Formation:</strong> For milk or stock-based sauces, press plastic wrap directly onto the surface or dot with butter while cooling.</li>
+                        <li><strong>Whisk Constantly (for Roux & Emulsions):</strong> Prevents lumps in roux-based sauces and separation in emulsions. [1]</li>
                     </ul>
-                </dd>
-                <dt>Troubleshooting (Emulsification):</dt>
-                <dd>
+                    <h4>Common Mistakes & Troubleshooting:</h4>
+                        <dl>
+                            <dt>Lumpy Sauce:</dt><dd>Liquid added too quickly to roux, or liquid not the right temperature. Solution: Whisk vigorously. For roux, add liquid gradually, or ensure liquid is cool/warm (not hot) if roux is hot, and vice-versa.</dd>
+                            <dt>Broken Emulsion (e.g., Hollandaise):</dt><dd>Butter added too quickly, sauce got too hot or too cold. Solution: Try whisking in a teaspoon of hot water or an extra egg yolk in a separate bowl and slowly incorporating the broken sauce.</dd>
+                            <dt>Sauce is Too Thin:</dt><dd>Not enough thickener or insufficient reduction. Solution: Reduce further by simmering, or add a slurry/beurre manié, or more roux (cooked separately and tempered).</dd>
+                            <dt>Sauce is Too Thick:</dt><dd>Too much thickener or over-reduced. Solution: Whisk in a little more of the base liquid (stock, milk, water) until desired consistency is reached.</dd>
+                            <dt>Floury Taste (Roux-based):</dt><dd>Roux not cooked long enough. Solution: Ensure roux is cooked for at least a few minutes to cook out the raw flour taste. [1]</dd>
+                        </dl>
+                     <h4>Practice Drills:</h4>
+                        <dd><strong>Simple Pan Sauce:</strong> After searing chicken or pork, deglaze the pan with wine or stock, reduce, and finish with a knob of butter. [27, 48]</dd>
+                        <dd><strong>Basic Béchamel:</strong> Practice making a smooth, lump-free béchamel, then turn it into a cheese sauce (Mornay) for macaroni. [1]</dd>
+                        <dd><strong>Homemade Vinaigrette:</strong> Master the emulsification of oil and vinegar for salads.</dd>
+                    <h4>Key Resources & Further Learning:</h4>
                     <ul>
-                        <li class="troubleshooting-item"><strong>"Why is my vinaigrette/mayonnaise broken/separated?"</strong> Oil was added too quickly, or not enough whisking. To fix a broken mayonnaise, start with a fresh egg yolk (or a teaspoon of mustard/water) in a clean bowl and <em>very</em> slowly whisk the broken mixture into it, drop by drop at first.</li>
+                        <li><a href="https://www.escoffier.edu/blog/recipes/how-to-make-the-5-mother-sauces/" target="_blank">Escoffier Online: How to Make the 5 Mother Sauces</a>. [1]</li>
+                        <li><a href="https://www.seriouseats.com/guide-to-french-mother-sauces" target="_blank">Serious Eats: Guide to French Mother Sauces</a></li>
+                        <li><a href="https://www.youtube.com/watch?v=wK1k2nB4vpo" target="_blank">Watch: Basics of Sauce Making (e.g., Binging with Babish or similar)</a>. [20]</li>
+                        <li><a href="https://www.theculinarypro.com/principles-of-sauce-making" target="_blank">The Culinary Pro: Principles of Sauce Making</a>. [4]</li>
                     </ul>
-                </dd>
-            </dl>
-
-            <h4>b. Reduction (e.g., Pan Sauces, Glazes)</h4>
-            <dl>
-                <dt>Explanation:</dt>
-                <dd>Simmering a liquid (like stock, wine, or pan juices) uncovered to evaporate water content. This concentrates flavors and thickens the sauce naturally.</dd>
-                <dt>Step-by-Step (Simple Pan Sauce after Searing Meat):</dt>
-                <dd>
+                </div>
+            </div>
+
+            <div class="collapsible-item" id="seasoning">
+                <div class="collapsible-header" role="button" tabindex="0" aria-expanded="false" aria-controls="content-seasoning">
+                    <div class="collapsible-title-group">
+                        <i class="bi bi-gem collapsible-icon-main"></i>
+                        <h3 class="collapsible-title">Proper Seasoning</h3>
+                    </div>
+                    <i class="bi bi-chevron-down collapsible-icon-toggle"></i>
+                </div>
+                <div class="collapsible-content" id="content-seasoning" role="region" aria-labelledby="seasoning">
+                    <h4>Detailed Explanation:</h4>
+                    <p>Proper seasoning is one of the most critical skills in cooking, transforming good ingredients into great dishes. It's about more than just adding salt; it involves understanding how different seasonings (salt, pepper, acids, herbs, spices) interact with food to enhance and balance flavors.</p>
+                    <p><strong>Why it's important:</strong> Seasoning brightens flavors, adds depth and complexity, and can correct imbalances in a dish. Under-seasoning leads to flat, bland food, while over-seasoning can ruin it.</p>
+                    <h4>Key Seasoning Agents & Their Roles:</h4>
+                    <dl>
+                        <dt>Salt (Sodium Chloride):</dt>
+                        <dd>The most important seasoning.
+                            <br>- <em>Enhances Flavors:</em> It doesn't just make food salty; it makes sweet things sweeter, savory things more savory, and can suppress bitterness.
+                            <br>- <em>Draws out Moisture:</em> Can be used for brining or curing.
+                            <br>- <em>Types:</em> Kosher salt (ideal for general cooking due to its texture and dissolvability), sea salt (various textures, good for finishing), table salt (often iodized, finer grain, can taste metallic if overused).
+                        </dd>
+                        <dt>Pepper (Black, White, Pink, Green):</dt>
+                        <dd>Adds piquancy and aroma. Freshly ground black pepper is generally preferred for its superior flavor. White pepper is common in light-colored sauces where black specks are undesirable.</dd>
+                        <dt>Acids (Lemon/Lime Juice, Vinegars, Wine, Yogurt, Tomatoes):</dt>
+                        <dd>Brighten flavors, cut through richness and fat, balance sweetness, and can "lift" a dish that tastes dull. A squeeze of lemon or a dash of vinegar at the end of cooking can make a huge difference.</dd>
+                        <dt>Herbs (Fresh & Dried):</dt>
+                        <dd>Add aromatic complexity.
+                            <br>- <em>Fresh Herbs:</em> (Basil, parsley, cilantro, mint, dill, thyme, rosemary, oregano) Often best added towards the end of cooking or as a garnish to preserve their delicate flavors and vibrant color.
+                            <br>- <em>Dried Herbs:</em> More concentrated flavor than fresh. Generally added earlier in the cooking process to allow flavors to meld (e.g., in stews, sauces). Rub dried herbs between fingers to release oils before adding.
+                        </dd>
+                        <dt>Spices (Ground & Whole):</dt>
+                        <dd>(Cumin, coriander, paprika, turmeric, cayenne, cinnamon, nutmeg, cloves, etc.) Add warmth, depth, and distinct flavor profiles.
+                            <br>- <em>Whole Spices:</em> Can be toasted before grinding for maximum flavor. Often used in slow-cooked dishes or infused into liquids.
+                            <br>- <em>Ground Spices:</em> More intense initially but lose potency faster than whole. Store in airtight containers away from light and heat.
+                        </dd>
+                        <dt>Sweeteners (Sugar, Honey, Maple Syrup):</dt>
+                        <dd>Can balance acidity or bitterness, and add depth (e.g., caramelized sugar).</dd>
+                        <dt>Umami Agents (Soy Sauce, Miso, Parmesan, Mushrooms, Tomato Paste):</dt>
+                        <dd>Provide savory depth and richness.</dd>
+                    </dl>
+                    <h4>Step-by-Step Principles (The "When" and "How"):</h4>
                     <ol>
-                        <li>Remove seared meat from the pan and set aside.</li>
-                        <li>If there's excessive fat, pour some off, leaving about 1-2 tablespoons.</li>
-                        <li>Sauté aromatics (optional): Add minced shallots or garlic to the pan and cook for a minute until fragrant.</li>
-                        <li>Deglaze: Add a liquid like wine (red or white), broth, or even water to the hot pan. Scrape up any browned bits (fond) from the bottom.</li>
-                        <li>Reduce: Bring the liquid to a simmer and let it cook uncovered until it has reduced by about half (or to your desired consistency) and the flavors have concentrated. The sauce will coat the back of a spoon.</li>
-                        <li>Finish (Optional): Whisk in a knob of cold butter off the heat for richness and shine ("monter au beurre"). Add fresh herbs. Season to taste.</li>
+                        <li><strong>Season in Layers (Throughout the Process):</strong> Don't wait until the end. Season components individually as you cook them. For example, salt vegetables when sautéing, season meat before searing, add spices to aromatics to "bloom" them.</li>
+                        <li><strong>Salt Early for Proteins (Sometimes):</strong> Salting meat well in advance (from 30 minutes to overnight – "dry brining") allows the salt to penetrate deeply, enhancing flavor and moisture retention. For delicate fish or very quick-cooking items, salt just before cooking.</li>
+                        <li><strong>Taste and Adjust Constantly:</strong> This is the single most important rule. Taste at different stages (where safe to do so) and ask: Does it need more salt? Acidity? Sweetness? Warmth from spices?</li>
+                        <li><strong>Consider the Final Dish:</strong> If a component will be combined with other salty ingredients (e.g., capers, cheese), season it more lightly initially.</li>
+                        <li><strong>Bloom Spices:</strong> Toasting whole spices or cooking ground spices in a little oil for a minute or two before adding other ingredients intensifies their flavor.</li>
+                        <li><strong>Use Fresh Herbs Wisely:</strong> Add delicate fresh herbs like parsley, cilantro, basil, and chives towards the end of cooking or as a garnish. Sturdier herbs like rosemary and thyme can be added earlier.</li>
+                        <li><strong>Don't Forget Acid:</strong> If a dish tastes heavy, dull, or "missing something," a squeeze of lemon juice or a dash of vinegar can often transform it.</li>
                     </ol>
-                </dd>
-                <dt>Tips for Mastery (Reduction):</dt>
-                <dd>
+                    <h4>Practical Tips for Mastery:</h4>
                     <ul>
-                        <li><strong>Simmer, Don't Boil Rapidly:</strong> A gentle simmer allows for better control.</li>
-                        <li><strong>Watch Carefully:</strong> Reductions can happen quickly towards the end and can burn if not watched.</li>
-                        <li><strong>Use a Wide Pan:</strong> A larger surface area speeds up evaporation.</li>
+                        <li><strong>Start with Less, Add More:</strong> You can always add more seasoning, but it's very hard to remove if you've overdone it.</li>
+                        <li><strong>Understand Salt Types:</strong> Different salts have different crystal sizes and densities, affecting how much "saltiness" you get per pinch or teaspoon. Kosher salt is often preferred by chefs.</li>
+                        <li><strong>Season from a Height:</strong> When seasoning broadly (like a large cut of meat or a pan of vegetables), sprinkle salt from about 8-12 inches above to ensure more even distribution.</li>
+                        <li><strong>Balance is Key:</strong> Aim for a harmonious balance of salty, sweet, sour, bitter, and umami.</li>
                     </ul>
-                </dd>
-                <dt>Troubleshooting (Reduction):</dt>
-                <dd>
+                    <h4>Common Mistakes & Troubleshooting:</h4>
+                        <dl>
+                            <dt>Food is Bland:</dt><dd>Under-seasoned, especially with salt, or lacking acidity. Solution: Add more salt (incrementally, tasting each time), and/or a squeeze of lemon/lime or a dash of vinegar.</dd>
+                            <dt>Food is Too Salty:</dt><dd>Over-salted. Solution (can be difficult):
+                                <br>- Dilute: If it's a soup or stew, add more unsalted liquid (stock, water).
+                                <br>- Add Bulk: Add more unsalted main ingredients (e.g., more vegetables, potatoes).
+                                <br>- Add Fat or Cream: Can sometimes absorb/mute saltiness.
+                                <br>- Add Acidity/Sweetness: A little sugar or acid can sometimes help balance.
+                                <br>- The "potato trick" (adding a raw potato to absorb salt) is largely a myth with minimal effect.
+                            </dd>
+                            <dt>Flavors are Muddled or One-Note:</dt><dd>May need contrasting flavors or more complexity. Solution: Consider adding fresh herbs for brightness, a different spice for warmth, or acid to cut through richness.</dd>
+                        </dl>
+                     <h4>Practice Drills:</h4>
+                        <dd><strong>Simple Tomato Sauce Taste Test:</strong> Make a basic tomato sauce. Taste it. Add salt, taste again. Add a pinch of sugar, taste. Add a splash of red wine vinegar or lemon juice, taste. Note the differences.</dd>
+                        <dd><strong>Seasoning Roasted Vegetables:</strong> Roast two small batches of the same vegetable. Season one only at the end, and the other with salt and pepper before roasting. Compare the flavor.</dd>
+                    <h4>Key Resources & Further Learning:</h4>
                     <ul>
-                        <li class="troubleshooting-item"><strong>"Sauce is too thin":</strong> Continue simmering to reduce further.</li>
-                        <li class="troubleshooting-item"><strong>"Sauce is too thick/syrupy":</strong> Whisk in a little more liquid (broth, water) until desired consistency is reached.</li>
-                        <li class="troubleshooting-item"><strong>"Sauce tastes burnt":</strong> Fond may have burned during searing, or reduction went too far. Unfortunately, this is hard to fix.</li>
+                        <li><a href="https://www.seriouseats.com/how-to-season-food" target="_blank">Serious Eats: The Complete Guide to Seasoning Food</a></li>
+                        <li><a href="https://www.bonappetit.com/story/salt-bae-actually-right-way-to-salt" target="_blank">Bon Appétit: Why You Should Season From Up High</a></li>
+                        <li>"Salt, Fat, Acid, Heat" by Samin Nosrat - An essential book for understanding flavor.</li>
+                        <li><a href="https://www.youtube.com/results?search_query=how+to+season+food+properly" target="_blank">Watch: How to Season Food Properly (YouTube Search)</a></li>
                     </ul>
-                </dd>
-            </dl>
-
-            <h4>c. Roux (e.g., Béchamel, Velouté, Gravy Base)</h4>
-            <dl>
-                <dt>Explanation:</dt>
-                <dd>A thickening agent made from equal parts by weight of flour and fat (usually melted butter), cooked together. It's the foundation for many classic sauces. The cooking time of the roux determines its color (white, blond, brown) and thickening power (lighter roux has more).</dd>
-                <dt>Step-by-Step (Basic White Roux for Béchamel):</dt>
-                <dd>
-                    <ol>
-                        <li><strong>Melt Fat:</strong> In a saucepan over medium-low heat, melt butter (or other fat).</li>
-                        <li><strong>Add Flour:</strong> Sprinkle in an equal amount of all-purpose flour.</li>
-                        <li><strong>Cook Roux:</strong> Whisk constantly for 1-3 minutes for a white roux (for béchamel or cheese sauce). The mixture will look like a wet paste and should smell nutty, not like raw flour. For a blond roux (for velouté or some gravies), cook a bit longer (3-5 mins) until pale golden. For a brown roux (for gumbos), cook much longer until deep brown, stirring frequently.</li>
-                        <li><strong>Gradually Add Liquid:</strong> <em>Slowly</em> whisk in a <em>warm or hot</em> liquid (e.g., milk for béchamel, stock for velouté or gravy) a little at a time, whisking vigorously after each addition to prevent lumps.</li>
-                        <li><strong>Bring to Simmer:</strong> Once all liquid is incorporated, bring the sauce to a simmer, whisking constantly. Cook for a few minutes more until thickened and the floury taste is gone. Season.</li>
-                    </ol>
-                </dd>
-                <dt>Tips for Mastery (Roux):</dt>
-                <dd>
+                </div>
+            </div>
+
+            <div class="collapsible-item" id="tempcontrol">
+                <div class="collapsible-header" role="button" tabindex="0" aria-expanded="false" aria-controls="content-tempcontrol">
+                    <div class="collapsible-title-group">
+                        <i class="bi bi-thermometer-half collapsible-icon-main"></i>
+                        <h3 class="collapsible-title">Temperature Control</h3>
+                    </div>
+                    <i class="bi bi-chevron-down collapsible-icon-toggle"></i>
+                </div>
+                <div class="collapsible-content" id="content-tempcontrol" role="region" aria-labelledby="tempcontrol">
+                    <h4>Detailed Explanation:</h4>
+                    <p>Temperature control is a fundamental skill in cooking that dictates the texture, doneness, safety, and flavor of your food. It involves not just setting your oven or stovetop to a certain number, but understanding how heat is transferred, how different ingredients react to heat, and how to use tools like thermometers effectively.</p>
+                    <p><strong>Why it's important:</strong>
+                        <br>- <em>Food Safety:</em> Cooking food to the correct internal temperature kills harmful bacteria. [16]
+                        <br>- <em>Texture & Doneness:</em> Precise temperatures ensure meats are tender and juicy, baked goods are perfectly risen, and vegetables are cooked to the desired crispness or softness.
+                        <br>- <em>Flavor Development:</em> Specific temperatures are needed for processes like Maillard browning and caramelization, which create desirable flavors.
+                        <br>- <em>Consistency:</em> Reliable temperature control leads to repeatable results.</p>
+                    <h4>Key Concepts:</h4>
+                    <dl>
+                        <dt>Heat Transfer Methods:</dt>
+                        <dd>
+                            - <em>Conduction:</em> Heat transfer through direct contact (e.g., food in a hot pan).
+                            <br>- <em>Convection:</em> Heat transfer through the movement of fluids (liquids or gases, like air in a convection oven or water when boiling).
+                            <br>- <em>Radiation:</em> Heat transfer through electromagnetic waves (e.g., grilling, broiling, microwave).
+                        </dd>
+                        <dt>Importance of Preheating:</dt>
+                        <dd>Preheating ovens, pans, and grills ensures that the cooking environment is at the correct, stable temperature when food is introduced. This leads to even cooking and proper browning. Insufficient preheating can lead to unevenly cooked food or poor texture.</dd>
+                        <dt>Internal Temperatures for Meats:</dt>
+                        <dd>Using a food thermometer is the only reliable way to ensure meats are cooked safely and to the desired doneness. (Refer back to Food Safety section for specific temperatures). [16]</dd>
+                        <dt>Oven Calibration:</dt>
+                        <dd>Many oven thermostats are inaccurate. An oven thermometer placed inside the oven will give you the true temperature, allowing you to adjust the dial accordingly.</dd>
+                        <dt>Oil Smoke Points:</dt>
+                        <dd>Different fats and oils start to break down and smoke at different temperatures. Using an oil above its smoke point can produce off-flavors and harmful compounds. Choose oils appropriate for the cooking temperature (e.g., high smoke point oils for searing/frying).</dd>
+                        <dt>Carryover Cooking:</dt>
+                        <dd>Food continues to cook even after it's removed from the heat source due to residual heat. This is especially true for larger items like roasts. Account for carryover cooking by removing food from heat slightly before it reaches its final target temperature (often 5-10°F lower for large roasts).</dd>
+                        <dt>The "Danger Zone":</dt>
+                        <dd>The temperature range (40°F - 140°F or 4°C - 60°C) where bacteria multiply rapidly. Perishable foods should not be left in this zone for more than two hours (or one hour if ambient temp is >90°F/32°C).</dd>
+                    </dl>
+                    <h4>Practical Tips for Mastery:</h4>
                     <ul>
-                        <li><strong>Measure Accurately:</strong> Equal weights of fat and flour are key.</li>
-                        <li><strong>Cook Out Raw Flour Taste:</strong> Don't rush the initial cooking of the roux.</li>
-                        <li><strong>Gradual Liquid Addition & Constant Whisking:</strong> This is the secret to a lump-free sauce. Adding cold liquid to a hot roux (or vice-versa, though warm liquid to roux is generally safer for beginners) can also help prevent lumps, but the gradual addition and whisking are most important.</li>
+                        <li><strong>Invest in Good Thermometers:</strong> An instant-read digital thermometer for food and an oven thermometer are essential tools.</li>
+                        <li><strong>Know Your Equipment:</strong> Understand how your specific oven and stovetop behave. Do they have hot spots? Do they run hot or cold?</li>
+                        <li><strong>Don't Crowd the Pan/Oven:</strong> Overcrowding lowers the temperature and leads to steaming instead of browning or roasting. Cook in batches if necessary.</li>
+                        <li><strong>Allow Ingredients to Come to Room Temperature (Sometimes):</strong> For searing steaks or roasting larger cuts, allowing them to sit at room temperature for 30-60 minutes before cooking can promote more even cooking. However, for food safety, don't leave perishable items out too long.</li>
+                        <li><strong>Control Stovetop Heat:</strong> Learn to adjust flame or burner settings to achieve different heat levels (low, medium-low, medium, medium-high, high). The sound of the food cooking (sizzling, bubbling) can be a good indicator.</li>
+                        <li><strong>Understand Visual Cues (but verify with a thermometer):</strong> While visual cues (color, texture) are helpful, always use a thermometer for critical items like meat to ensure safety and doneness.</li>
                     </ul>
-                </dd>
-                <dt>Troubleshooting (Roux):</dt>
-                <dd>
+                    <h4>Common Mistakes & Troubleshooting:</h4>
+                        <dl>
+                            <dt>Food Burned on Outside, Raw on Inside:</dt><dd>Cooking temperature too high. Solution: Reduce temperature, consider searing first then finishing at a lower temp, or use indirect heat.</dd>
+                            <dt>Food Undercooked or Overcooked:</dt><dd>Incorrect temperature, inaccurate timing, or not using a food thermometer. Solution: Use thermometers, follow reliable recipes, understand carryover cooking.</dd>
+                            <dt>Inconsistent Results:</dt><dd>Fluctuating oven/stovetop temperatures, oven not calibrated, inconsistent ingredient temperatures. Solution: Use an oven thermometer, preheat properly, bring ingredients to consistent starting temps if appropriate.</dd>
+                            <dt>Oil Smoking Excessively:</dt><dd>Oil heated past its smoke point or wrong type of oil used for high-heat cooking. Solution: Use an oil with a higher smoke point, reduce heat.</dd>
+                        </dl>
+                     <h4>Practice Drills:</h4>
+                        <dd><strong>Calibrate Your Oven:</strong> Place an oven thermometer in your oven, set it to a specific temperature (e.g., 350°F), and see how accurate it is after 20-30 minutes. Note any difference.</dd>
+                        <dd><strong>Cooking Chicken Breast to Perfection:</strong> Practice cooking chicken breasts (e.g., pan-searing then oven-finishing) and use an instant-read thermometer to pull them when they reach exactly 165°F (74°C) in the thickest part. Note the juiciness when cooked correctly versus slightly over or under.</dd>
+                    <h4>Key Resources & Further Learning:</h4>
                     <ul>
-                        <li class="troubleshooting-item"><strong>"Why is my sauce lumpy?"</strong> Liquid was added too quickly, not whisked enough, or liquid temperature difference was too extreme without proper agitation. Try to whisk out small lumps vigorously. If very lumpy, you can strain the sauce through a fine-mesh sieve.</li>
-                        <li class="troubleshooting-item"><strong>"Sauce is too thick":</strong> Whisk in more warm liquid until desired consistency.</li>
-                        <li class="troubleshooting-item"><strong>"Sauce is too thin":</strong> It may not have simmered long enough after adding liquid, or the roux-to-liquid ratio was off. You can try simmering longer, or in a pinch, make a small amount of extra roux in a separate pan and whisk some of the thin sauce into it, then combine back.</li>
+                        <li><a href="https://www.foodsafety.gov/food-safety-charts/safe-minimum-internal-temperatures" target="_blank">FoodSafety.gov: Safe Minimum Internal Temperatures Chart</a>. [16]</li>
+                        <li><a href="https://www.seriouseats.com/why-you-should-use-an-oven-thermometer" target="_blank">Serious Eats: Why You Should Use an Oven Thermometer</a></li>
+                        <li><a href="https://www.youtube.com/results?search_query=importance+of+food+thermometer" target="_blank">Watch: Importance of a Food Thermometer (YouTube Search)</a></li>
+                        <li><a href="https://en.wikipedia.org/wiki/Smoke_point" target="_blank">Wikipedia: Smoke Point of Cooking Oils</a></li>
                     </ul>
-                </dd>
-            </dl>
-        </article>
-
-        <article class="technique">
-            <h3>9. Proper Seasoning</h3>
-            <dl>
-                <dt>Explanation:</dt>
-                <dd>Seasoning is about more than just adding salt; it's about enhancing and balancing the natural flavors of your ingredients. Salt is primary, but acids (lemon, vinegar), fats, and other spices play roles too.</dd>
-                <dt>Step-by-Step Instructions (Focus on Salt):</dt>
-                <dd>
-                    <ol>
-                        <li><strong>Season Throughout Cooking (Layering):</strong> Don't just season at the end. Add salt in stages.
-                            <ul>
-                                <li>Season meat before searing or roasting.</li>
-                                <li>Salt water for boiling pasta or vegetables.</li>
-                                <li>Season individual components of a dish (e.g., the vegetables for a stew, then adjust the whole stew later).</li>
-                            </ul>
-                        </li>
-                        <li><strong>Start Small, Then Adjust:</strong> You can always add more salt, but it's hard to take it away.</li>
-                        <li><strong>Taste, Taste, Taste:</strong> This is the most critical step. Taste your food at different stages (when safe to do so) and adjust seasoning as needed. Flavors change and develop during cooking.</li>
-                        <li><strong>Consider the Ingredient:</strong> Some ingredients (like cured meats or cheese) are already salty, so adjust accordingly.</li>
-                        <li><strong class="pro-tip">Finishing Salt (Pro-Tip):</strong> A sprinkle of flaky sea salt just before serving can add a final burst of flavor and pleasant texture.</li>
-                    </ol>
-                </dd>
-                <dt>Practical Tips for Mastery:</dt>
-                <dd>
+                </div>
+            </div>
+
+        </section>
+
+        <!-- Part 3: Exploring Diverse Cooking Styles -->
+        <section class="main-section" id="part3-styles">
+            <div class="main-section-header">
+                <h2><i class="bi bi-globe-americas"></i>Part 3: Diverse Cooking Styles</h2>
+                 <div class="main-section-controls">
+                    <button class="btn btn-sm expand-all-btn" data-target-parent="part3-styles"><i class="bi bi-arrows-expand"></i> Expand All</button>
+                    <button class="btn btn-sm collapse-all-btn" data-target-parent="part3-styles"><i class="bi bi-arrows-collapse"></i> Collapse All</button>
+                </div>
+            </div>
+            <p class="lead" style="font-size: 1.1rem; color: var(--text-color-muted);">Journey through global culinary traditions and the techniques that define them.</p>
+
+            <div class="collapsible-item" id="grilling">
+                <div class="collapsible-header" role="button" tabindex="0" aria-expanded="false" aria-controls="content-grilling">
+                    <div class="collapsible-title-group">
+                        <i class="bi bi-grill-fill collapsible-icon-main"></i>
+                        <h3 class="collapsible-title">Grilling/BBQ</h3>
+                    </div>
+                    <i class="bi bi-chevron-down collapsible-icon-toggle"></i>
+                </div>
+                <div class="collapsible-content" id="content-grilling" role="region" aria-labelledby="grilling">
+                    <h4>Detailed Explanation:</h4>
+                    <p><strong>Grilling</strong> involves cooking food over a radiant heat source, typically from below, on grates. It's usually fast, uses direct high heat, and imparts char marks and smoky flavor. <strong>Barbecuing (BBQ)</strong>, particularly in American traditions, often refers to slow-cooking food over indirect, low heat with wood smoke for extended periods, tenderizing tougher cuts of meat.</p>
+                    <p><strong>Principles:</strong> Control of heat is paramount. Direct heat for searing and quick cooking (steaks, burgers, vegetables). Indirect heat (coals/burners off to one side, food on the other) for larger items or gentle cooking (whole chicken, ribs). Smoke from wood chips/chunks (for BBQ) adds complex flavor layers.</p>
+                    <h4>Cultural & Historical Context:</h4>
+                        <dd>Humans have been cooking over open fires for millennia. Modern grilling and BBQ have deep cultural roots:
+                        <br>- <strong>USA:</strong> Iconic backyard culture. Regional BBQ styles (Texas brisket, Carolina pulled pork, Kansas City sweet sauces, Memphis dry rubs) are fiercely debated and celebrated. Rooted in Native American and African American culinary traditions.
+                        <br>- <strong>Argentina (Asado):</strong> A national pastime and social ritual. Slow-grilled meats (beef ribs, sausages, offal) over wood/charcoal, emphasizing community and simple, high-quality ingredients.
+                        <br>- <strong>Korea (Gogi-gui):</strong> Often tabletop grilling of marinated meats like bulgogi (beef) or galbi (ribs), fostering communal dining.
+                        <br>- <strong>Japan (Yakitori/Yakiniku):</strong> Yakitori involves skewered chicken grilled over binchotan charcoal. Yakiniku is grilled meat, similar to Korean style. Both emphasize precision and quality.</dd>
+                    <h4>Key Techniques Applied:</h4>
                     <ul>
-                        <li><strong>Understand Different Salts:</strong> Kosher salt is great for general cooking due to its larger crystals (easier to pinch and control). Table salt is finer and saltier by volume (contains anti-caking agents). Sea salt comes in various textures for finishing.</li>
-                        <li><strong>When to Add Other Seasonings:</strong>
-                            <ul>
-                                <li><strong>Dried Herbs:</strong> Add earlier in cooking to allow flavors to meld (e.g., in stews, braises).</li>
-                                <li><strong>Fresh Herbs:</strong> Add towards the end of cooking or as a garnish to preserve their fresh flavor and color (e.g., basil in pasta, cilantro in curry).</li>
-                                <li><strong>Ground Spices:</strong> Often benefit from "blooming" – toasting briefly in oil or with aromatics at the beginning of cooking to release their aromas.</li>
-                            </ul>
-                        </li>
-                        <li><strong>Balance is Key:</strong> Remember the basic flavor profiles. If something tastes flat, it might need salt or acid. If too sweet, a pinch of salt or a dash of vinegar can balance it.</li>
+                        <li><strong>Searing (Part 2):</strong> Essential for creating flavorful crusts on steaks, chops, etc. [39]</li>
+                        <li><strong>Temperature Control (Part 2):</strong> Creating heat zones, managing flare-ups, knowing when to use direct vs. indirect heat.</li>
+                        <li><strong>Proper Seasoning (Part 2):</strong> From simple salt and pepper to complex rubs and marinades.</li>
                     </ul>
-                </dd>
-                <dt>Troubleshooting:</dt>
-                <dd>
+                    <h4>Illustrative Dish Examples (Elaborated):</h4>
+                        <dd><strong>American BBQ Pulled Pork (USA - Southern):</strong> Pork shoulder (Boston butt) is seasoned with a dry rub, then slow-smoked over indirect heat (often hickory or oak) for 8-12+ hours until fall-apart tender (internal temp ~200-205°F). It's then shredded ("pulled") and often mixed with a region-specific BBQ sauce. The slow, smoky cooking style is what defines its texture and deep flavor.</dd>
+                        <dd><strong>Argentinian Asado (Vacio - Flank Steak):</strong> A popular cut, flank steak is often simply seasoned with coarse salt (salmuera - brine - can also be used) and grilled slowly over embers, fat-cap down first to render, then flipped. The art is in managing the fire and achieving tenderness without overcooking.</dd>
+                    <h4>Practical Tips for Mastery:</h4>
                     <ul>
-                        <li class="troubleshooting-item"><strong>"Food is Bland":</strong> Most likely needs more salt. Could also benefit from an acid (lemon juice, vinegar) to brighten flavors.</li>
-                        <li class="troubleshooting-item"><strong>"Food is Too Salty":</strong>
-                            <ul>
-                                <li><strong>Dilution:</strong> For soups or stews, add more liquid (unsalted broth, water) and other unsalted ingredients (like potatoes or rice).</li>
-                                <li><strong>Acid/Sweetness:</strong> A little sugar or acid can sometimes help balance excessive saltiness, but it won't remove it.</li>
-                                <li><strong>Dairy:</strong> Adding unsalted dairy like cream or yogurt can sometimes mellow saltiness in sauces.</li>
-                                <li><strong>Prevention is best:</strong> Salt gradually and taste often.</li>
-                            </ul>
-                        </li>
+                        <li><strong>Clean and Oil Grates:</strong> Prevents sticking. Clean grates while hot with a grill brush. Oil lightly just before adding food.</li>
+                        <li><strong>Preheat Your Grill:</strong> Just like an oven, a properly preheated grill cooks more evenly.</li>
+                        <li><strong>Know Your Zones:</strong> Set up direct and indirect heat zones for versatility.</li>
+                        <li><strong>Don't Press Burgers/Steaks:</strong> This squeezes out flavorful juices.</li>
+                        <li><strong>Use a Thermometer:</strong> Especially for larger cuts or BBQ.</li>
+                        <li><strong>Rest Your Meat:</strong> Allow grilled meats to rest for 5-15 minutes before slicing to redistribute juices. [15]</li>
                     </ul>
-                </dd>
-                <dt>Practice Drill:</dt>
-                <dd class="practice-drill">Make a simple tomato sauce from scratch. Taste and adjust seasoning (salt, pepper, a pinch of sugar if tomatoes are too acidic, fresh basil at the end) at multiple stages.</dd>
-            </dl>
-        </article>
-
-        <article class="technique">
-            <h3>10. Temperature Control</h3>
-            <dl>
-                <dt>Explanation:</dt>
-                <dd>Understanding and managing heat is fundamental to cooking. Different temperatures achieve different results (e.g., high heat for searing, low heat for gentle simmering). Using the correct temperature ensures food is cooked safely, evenly, and achieves the desired texture and flavor.</dd>
-                <dt>Step-by-Step Instructions (General Principles):</dt>
-                <dd>
-                    <ol>
-                        <li><strong>Preheating:</strong>
-                            <ul>
-                                <li><strong>Ovens:</strong> Always preheat fully before adding food to ensure the specified temperature is reached for even cooking from the start. Use an oven thermometer for accuracy.</li>
-                                <li><strong>Pans (Stovetop):</strong> Preheat pans before adding oil/fat and then food, especially for sautéing and searing, to prevent sticking and achieve proper browning.</li>
-                            </ul>
-                        </li>
-                        <li><strong>Choosing Heat Levels (Stovetop):</strong>
-                            <ul>
-                                <li><strong>High Heat:</strong> For boiling water rapidly, searing meats, stir-frying. Use with caution as food can burn quickly.</li>
-                                <li><strong>Medium-High Heat:</strong> Good for sautéing, browning, frying.</li>
-                                <li><strong>Medium Heat:</strong> For general cooking, caramelizing onions slowly, cooking pancakes.</li>
-                                <li><strong>Medium-Low Heat:</strong> For simmering sauces, stews, braises after initial browning.</li>
-                                <li><strong>Low Heat:</strong> For keeping food warm, melting chocolate, very gentle simmering.</li>
-                            </ul>
-                        </li>
-                        <li><strong>Using Thermometers:</strong>
-                            <ul>
-                                <li><strong>Meat Thermometer:</strong> Essential for checking the internal temperature of meats, poultry, and fish to ensure they are cooked safely and to the desired doneness. Insert into the thickest part, avoiding bone.</li>
-                                <li><strong>Oven Thermometer:</strong> Place in the center of your oven to get an accurate reading of its actual temperature, as oven dials can be off.</li>
-                                <li><strong>Candy/Deep-Fry Thermometer:</strong> For tasks requiring precise liquid temperatures.</li>
-                            </ul>
-                        </li>
-                        <li><strong>Observing Visual and Auditory Cues:</strong>
-                            <ul>
-                                <li><strong>Color:</strong> Look for browning on meats and vegetables.</li>
-                                <li><strong>Sound:</strong> Listen for sizzling (searing, sautéing), gentle bubbling (simmering), or rapid bubbling (boiling).</li>
-                                <li><strong>Texture:</strong> Food softening (vegetables), firming up (eggs, meat).</li>
-                            </ul>
-                        </li>
-                        <li><strong>Adjusting Heat as Needed:</strong> Don't be afraid to adjust the heat up or down during cooking based on how the food is reacting. If something is browning too quickly, reduce the heat. If a simmer is too vigorous, turn it down.</li>
-                    </ol>
-                </dd>
-                <dt>Practical Tips for Mastery:</dt>
-                <dd>
+                    <h4>Key Resources & Further Learning:</h4>
                     <ul>
-                        <li><strong>Know Your Cooktop/Oven:</strong> Different appliances behave differently. Get to know the quirks of yours. Electric stovetops retain heat longer than gas, for example.</li>
-                        <li><strong>Don't Overcrowd the Pan:</strong> This significantly lowers the temperature and leads to steaming instead of browning/searing.</li>
-                        <li><strong>Bring Cold Ingredients Closer to Room Temp:</strong> For some applications, like searing steak or baking, letting ingredients like meat or eggs sit out for a short time (e.g., 20-30 mins) can promote more even cooking. Follow food safety guidelines.</li>
-                        <li><strong>Resting Food:</strong> After cooking (especially meats), resting allows the internal temperature to equalize and juices to redistribute.</li>
+                        <li><a href="https://amazingribs.com/" target="_blank">AmazingRibs.com - A definitive resource for BBQ and grilling science and recipes.</a></li>
+                        <li><a href="https://www.youtube.com/results?search_query=how+to+grill+a+perfect+steak" target="_blank">Watch: How to Grill a Perfect Steak (YouTube Search)</a></li>
+                        <li><a href="https://www.youtube.com/results?search_query=bbq+pulled+pork+recipe+for+beginners" target="_blank">Watch: BBQ Pulled Pork for Beginners (YouTube Search)</a></li>
+                        <li><a href="https://www.weber.com/US/en/blog/grilling-tips/charcoal-vs-gas-grill/weber-30778.html" target="_blank">Weber: Guide to Choosing a Grill: Charcoal vs. Gas</a></li>
                     </ul>
-                </dd>
-                <dt>Troubleshooting:</dt>
-                <dd>
+                </div>
+            </div>
+
+            <div class="collapsible-item" id="baking">
+                <div class="collapsible-header" role="button" tabindex="0" aria-expanded="false" aria-controls="content-baking">
+                    <div class="collapsible-title-group">
+                        <i class="bi bi-cake2-fill collapsible-icon-main"></i>
+                        <h3 class="collapsible-title">Baking</h3>
+                    </div>
+                    <i class="bi bi-chevron-down collapsible-icon-toggle"></i>
+                </div>
+                <div class="collapsible-content" id="content-baking" role="region" aria-labelledby="baking">
+                    <h4>Detailed Explanation:</h4>
+                    <p>Baking is a method of cooking food that uses prolonged dry heat, normally in an oven, but also in hot ashes, or on hot stones. It's a science as much as an art, relying on precise measurements and understanding how ingredients interact (flour for structure, leaveners for rise, fats for tenderness, sugars for sweetness and browning).</p>
+                    <p><strong>Principles:</strong> Accurate measurement is key. Ingredients like flour, sugar, fats, eggs, and leavening agents (baking soda, baking powder, yeast) interact chemically to produce the desired texture, rise, and flavor. Oven temperature and even heat distribution are crucial for successful baking.</p>
+                    <h4>Cultural & Historical Context:</h4>
+                    <dd>Baking is one of the oldest cooking methods, with evidence of bread-making dating back thousands of years across various cultures.
+                        <br>- <strong>Ancient Egypt:</strong> Known for developing yeast leavening for bread.
+                        <br>- <strong>Roman Empire:</strong> Baking became a recognized profession with dedicated public ovens.
+                        <br>- <strong>Europe (Middle Ages onwards):</strong> Development of guilds for bakers, refinement of pastries, cakes, and breads. Countries like France (patisserie), Austria (Viennoiserie), and Italy developed distinct baking traditions.
+                        <br>- <strong>Global:</strong> Every culture has its baked goods, from flatbreads in the Middle East and Asia to enriched breads and elaborate cakes in Western traditions.</dd>
+                    <h4>Key Techniques Applied:</h4>
                     <ul>
-                        <li class="troubleshooting-item"><strong>"Food Burnt on Outside, Raw Inside":</strong> Heat is too high. Reduce temperature and cook longer. If oven roasting, you can tent with foil.</li>
-                        <li class="troubleshooting-item"><strong>"Food Not Browning":</strong> Heat is too low, pan overcrowded, or food was too moist.</li>
-                        <li class="troubleshooting-item"><strong>"Uneven Cooking":</strong> Could be hot spots in your oven/pan, or pieces of food are not uniform in size. Rotate food or stir as needed.</li>
+                        <li><strong>Accurate Measuring (Part 1 - Pantry/Equipment):</strong> Essential for consistent results. Use dry measuring cups for dry ingredients and liquid for wet.</li>
+                        <li><strong>Temperature Control (Part 2):</strong> Precise oven temperature is vital. Use an oven thermometer.</li>
+                        <li><strong>Understanding Ingredients (Part 1):</strong> Knowing the role of flour (gluten development), fats, sugars, eggs, leaveners.</li>
+                        <li><strong>Mixing Methods:</strong> Different methods (creaming, folding, kneading) develop structure and texture in specific ways.</li>
                     </ul>
-                </dd>
-                <dt>Practice Drill:</dt>
-                <dd class="practice-drill">Cook pancakes. Experiment with medium heat to find the sweet spot where they cook through and brown evenly without burning before the inside is done. Try searing a chicken breast: high heat for the initial sear, then reduce heat or transfer to oven to finish cooking through.</dd>
-            </dl>
-        </article>
-    </section>
-
-    <section id="part3">
-        <h2>Part 3: Exploring Diverse Cooking Styles & Their Cultural Roots</h2>
-        <p>Now that you have a grasp of fundamental techniques, let's explore various cooking styles. Each style has its own principles, equipment, and often, a rich cultural heritage.</p>
-
-        <article class="cooking-style">
-            <h3>1. Grilling/BBQ</h3>
-            <dl>
-                <dt>Overview & Principles:</dt>
-                <dd>Cooking food over a radiant heat source, typically from below. Grilling usually involves direct, high heat and quicker cooking times, while BBQ often implies lower, indirect heat and longer cooking times, frequently with smoke for flavor. Both impart characteristic char marks and smoky flavors.</dd>
-                <dt>Cultural/Regional Significance:</dt>
-                <dd>
+                    <h4>Illustrative Dish Examples (Elaborated):</h4>
+                    <dd><strong>Classic Chocolate Chip Cookies (USA):</strong> Relies on the creaming method (butter and sugar beaten together to incorporate air), the right balance of flour for structure, eggs for binding and richness, and leaveners (baking soda/powder) for spread and slight rise. Chilling the dough can improve flavor and texture.</dd>
+                    <dd><strong>Sourdough Bread (Global, Ancient Origins):</strong> A naturally leavened bread using a wild yeast and bacteria starter ("sourdough starter"). Requires understanding fermentation, dough handling (stretching and folding to build gluten), shaping, and scoring before baking, often in a Dutch oven to trap steam for a good crust.</dd>
+                    <h4>Practical Tips for Mastery:</h4>
                     <ul>
-                        <li><strong>USA:</strong> A cornerstone of American culinary culture, particularly in the South. Associated with backyard gatherings, summer holidays, and regional BBQ traditions (e.g., Texas brisket, Carolina pulled pork, Kansas City ribs, Memphis dry rub).</li>
-                        <li><strong>Argentina:</strong> <em>Asado</em> is a national dish and a significant social event, featuring various cuts of beef and sausages cooked slowly over wood or charcoal.</li>
-                        <li><strong>Korea:</strong> Korean BBQ (Gogi-gui) involves grilling meats, often marinated (like <em>bulgogi</em> or <em>galbi</em>), typically at the dining table on built-in or portable grills, emphasizing communal dining.</li>
-                        <li><strong>Japan:</strong> <em>Yakitori</em> (grilled chicken skewers) and <em>Yakiniku</em> (grilled meat, similar to Korean BBQ) showcase precision and quality ingredients. <em>Robatayaki</em> is grilling over hot charcoal.</li>
-                        <li><strong>Australia:</strong> "Barbies" are a quintessential part of the lifestyle, often featuring sausages ("snags"), steaks, and seafood.</li>
-                        <li><strong>Brazil:</strong> <em>Churrasco</em> is a Brazilian style of grilling various meats on long skewers over fire, often served rodĂ­zio-style (all-you-can-eat).</li>
+                        <li><strong>Measure Ingredients Accurately:</strong> Use proper measuring tools. Spoon flour lightly into measuring cups and level off.</li>
+                        <li><strong>Preheat Oven Properly:</strong> Ensure the oven is at the correct temperature before putting items in.</li>
+                        <li><strong>Don't Overmix:</strong> Overmixing batter (especially for cakes and muffins) can develop too much gluten, leading to tough results. Mix until just combined. Bread dough, however, requires thorough kneading.</li>
+                        <li><strong>Understand Leaveners:</strong> Baking soda needs an acid to react; baking powder is a complete leavener (contains acid and base). Yeast requires warmth and food (sugar) to activate.</li>
+                        <li><strong>Room Temperature Ingredients:</strong> Many recipes call for room temperature butter, eggs, and milk for better emulsification and incorporation.</li>
+                        <li><strong>Use an Oven Thermometer:</strong> Oven temperatures can vary significantly.</li>
                     </ul>
-                </dd>
-                <dt>Key Techniques Applied:</dt>
-                <dd>Searing, Temperature Control, Proper Seasoning.</dd>
-                <dt>Illustrative Dish Examples:</dt>
-                <dd>
+                    <h4>Common Mistakes & Troubleshooting:</h4>
+                        <dl>
+                            <dt>Baked Goods are Tough:</dt><dd>Overmixing, too much flour, or not enough fat. Solution: Mix batter until just combined, measure flour correctly (spoon and level), ensure correct fat content.</dd>
+                            <dt>Baked Goods Don't Rise/Are Dense:</dt><dd>Leavener is old/inactive, oven temperature too low, or too much liquid/fat weighing it down. Solution: Check leavener freshness, use an oven thermometer, measure accurately.</dd>
+                            <dt>Baked Goods are Dry:</dt><dd>Overbaked, too much flour, or not enough liquid/fat. Solution: Bake until just done (use a skewer test for cakes), measure correctly.</dd>
+                            <dt>Uneven Baking/Burnt Edges:</dt><dd>Oven hot spots, pan too dark, or oven temperature too high. Solution: Rotate pans during baking, use lighter-colored pans, check oven temperature.</dd>
+                        </dl>
+                    <h4>Key Resources & Further Learning:</h4>
                     <ul>
-                        <li><strong>American BBQ Pulled Pork (USA - Southern):</strong> Pork shoulder (Boston butt) is slow-cooked (often smoked) over indirect heat for many hours until extremely tender, then shredded and typically mixed with a vinegar-based, tomato-based, or mustard-based BBQ sauce. The low-and-slow grilling/smoking style is essential for breaking down the tough cut and infusing smoke flavor.</li>
-                        <li><strong>Asado (Argentina):</strong> Various cuts of beef (ribs, flank steak, sirloin), chorizo, morcilla (blood sausage), and sweetbreads are grilled slowly over <em>parrillas</em> (grills) typically fueled by wood or charcoal. The style emphasizes the quality of the meat and patient, slow grilling to achieve optimal tenderness and smoky flavor.</li>
-                        <li><strong>Bulgogi (Korea):</strong> Thinly sliced marinated beef (typically sirloin, ribeye, or brisket) is grilled, often on a tabletop grill. The grilling process quickly cooks the marinated meat, caramelizing the sugars in the marinade and creating a savory, slightly sweet, and smoky flavor.</li>
+                        <li><a href="https://www.kingarthurbaking.com/learn" target="_blank">King Arthur Baking: Learn - Extensive resources for all types of baking.</a></li>
+                        <li><a href="https://sallysbakingaddiction.com/baking-basics/" target="_blank">Sally's Baking Addiction: Baking Basics - Tips and tricks for common baking questions.</a></li>
+                        <li><a href="https://www.youtube.com/results?search_query=baking+science+for+beginners" target="_blank">Watch: Baking Science for Beginners (YouTube Search)</a></li>
+                        <li><a href="https://www.thekitchn.com/baking-school" target="_blank">The Kitchn: Baking School</a></li>
                     </ul>
-                </dd>
-            </dl>
-        </article>
-
-        <article class="cooking-style">
-            <h3>2. Baking</h3>
-            <dl>
-                <dt>Overview & Principles:</dt>
-                <dd>Cooking food using prolonged dry heat, normally in an oven. Heat is transferred through convection and radiation. Essential for breads, pastries, cakes, and casseroles. Precision in measurement and temperature control is often key.</dd>
-                <dt>Cultural/Regional Significance:</dt>
-                <dd>
+                </div>
+            </div>
+
+            <div class="collapsible-item" id="stir-frying">
+                <div class="collapsible-header" role="button" tabindex="0" aria-expanded="false" aria-controls="content-stir-frying">
+                    <div class="collapsible-title-group">
+                        <i class="bi bi-lightning-charge-fill collapsible-icon-main"></i>
+                        <h3 class="collapsible-title">Stir-Frying</h3>
+                    </div>
+                    <i class="bi bi-chevron-down collapsible-icon-toggle"></i>
+                </div>
+                <div class="collapsible-content" id="content-stir-frying" role="region" aria-labelledby="stir-frying">
+                    <h4>Detailed Explanation:</h4>
+                    <p>Stir-frying is a fast, high-heat cooking technique originating from China, where ingredients are tossed and stirred in a hot wok or large skillet with a small amount of oil. [10] It emphasizes fresh ingredients, uniform cuts, and quick cooking to preserve texture, color, and nutrients.</p>
+                    <p><strong>Principles:</strong> High heat and constant motion are key. [10] Ingredients are added sequentially based on their cooking time – proteins and harder vegetables first, followed by softer vegetables and aromatics. A well-balanced stir-fry sauce is added near the end to coat everything. [43]</p>
+                    <h4>Cultural & Historical Context:</h4>
+                    <dd>Believed to have originated during the Han Dynasty in China, stir-frying became popular due to fuel scarcity, as the technique cooks food quickly.
+                        <br>- <strong>China:</strong> A cornerstone of Chinese cuisine with countless regional variations. The wok is the traditional and ideal vessel. [10]
+                        <br>- <strong>Southeast Asia:</strong> Widely adopted and adapted in countries like Thailand, Vietnam, and Malaysia, often incorporating local ingredients and flavor profiles (e.g., fish sauce, lemongrass, chili).
+                        <br>- <strong>Global Adaptations:</strong> Popular worldwide for its speed, versatility, and healthy appeal.</dd>
+                    <h4>Key Techniques Applied:</h4>
                     <ul>
-                        <li><strong>Global Staple:</strong> Bread, in myriad forms, is a foundational food in cultures worldwide.</li>
-                        <li><strong>Egypt & Fertile Crescent:</strong> Ancient Egyptians were pioneers, developing early leavened breads and ovens.</li>
-                        <li><strong>Europe:</strong> Strong traditions of artisanal bread (French baguettes, German rye, Italian ciabatta), pastries (French croissants, Danish pastries, Austrian Sachertorte), and cakes. Baking guilds were historically significant.</li>
-                        <li><strong>USA:</strong> Known for pies (apple, pumpkin), cookies (chocolate chip), quick breads (banana bread, muffins), and layer cakes.</li>
-                        <li><strong>Middle East & South Asia:</strong> Flatbreads like pita, naan, and lavash are baked in tandoor ovens or on saj flat tops.</li>
-                        <li><strong>Latin America:</strong> Sweet breads (pan dulce), empanadas (baked turnovers).</li>
+                        <li><strong>Knife Skills (Part 2):</strong> Uniformly sliced/diced ingredients are crucial for even and quick cooking. [10]</li>
+                        <li><strong>Sautéing (Part 2):</strong> Similar principles of high heat and quick cooking in fat, but stir-frying involves more vigorous movement.</li>
+                        <li><strong>Temperature Control (Part 2):</strong> Maintaining high heat throughout the process is essential. [10]</li>
+                        <li><strong>Proper Seasoning (Part 2):</strong> Balancing flavors in the stir-fry sauce (salty, sweet, sour, umami). [42]</li>
                     </ul>
-                </dd>
-                <dt>Key Techniques Applied:</dt>
-                <dd>Temperature Control, Emulsification (for some batters), Roux (for some savory baked dishes like pot pies), Proper Seasoning (even in sweet goods, salt is important).</dd>
-                <dt>Illustrative Dish Examples:</dt>
-                <dd>
+                    <h4>Illustrative Dish Examples (Elaborated):</h4>
+                    <dd><strong>Kung Pao Chicken (Sichuan, China):</strong> Features diced chicken, peanuts, vegetables (like bell peppers, scallions), and dried chilies. The sauce typically includes soy sauce, vinegar, sugar, and Sichuan peppercorns for a characteristic "ma la" (numbing and spicy) flavor. Chicken is often marinated and sometimes "velveted" (coated in egg white/cornstarch) for tenderness.</dd>
+                    <dd><strong>Pad See Ew (Thailand):</strong> Wide rice noodles stir-fried with Chinese broccoli, egg, and a protein (chicken, pork, beef, or tofu) in a savory-sweet dark soy sauce-based sauce. The high heat of the wok imparts a desirable smoky char ("wok hei").</dd>
+                    <h4>Practical Tips for Mastery:</h4>
                     <ul>
-                        <li><strong>Sourdough Bread (Global, ancient origins, refined in Europe & USA):</strong> A naturally leavened bread made using a "starter" of wild yeast and bacteria. The baking process involves precise fermentation times and high initial oven heat with steam to create a crispy crust and open crumb. The style defines the bread's tangy flavor, chewy texture, and characteristic crust.</li>
-                        <li><strong>Croissant (France):</strong> A buttery, flaky viennoiserie pastry, named for its historical crescent shape. Achieved through laminating dough – layering yeast-leavened dough with butter, rolling and folding it multiple times, then baking. The baking style creates distinct, delicate, and crispy layers.</li>
-                        <li><strong>New York Cheesecake (USA):</strong> A rich, dense, and smooth baked custard dessert, typically made with cream cheese, eggs, sugar, and cream, often on a graham cracker crust. Baking in a moderate oven, sometimes with a water bath, ensures even cooking and prevents cracking, resulting in its signature creamy texture.</li>
+                        <li><strong>Mise en Place is Critical:</strong> Have all ingredients chopped, measured, and sauces mixed *before* you start cooking. Stir-frying is too fast to prep as you go. [10]</li>
+                        <li><strong>Use a Wok (if possible):</strong> Its shape allows for high heat concentration at the bottom and cooler sides to move food around. A large, heavy-bottomed skillet can also work. [10, 43]</li>
+                        <li><strong>High Heat:</strong> Get the wok/pan very hot before adding oil, and let the oil get hot before adding ingredients. Ingredients should sizzle immediately. [10, 46]</li>
+                        <li><strong>Don't Overcrowd:</strong> This lowers the temperature, leading to steaming. Cook in batches if necessary. [10]</li>
+                        <li><strong>Cook in Stages:</strong> Add proteins first to sear, then remove. Cook harder vegetables, then softer ones. Return protein and add sauce at the end. [43, 46]</li>
+                        <li><strong>Keep Food Moving:</strong> Constant stirring and tossing ensures even cooking and prevents burning. [10]</li>
+                        <li><strong>Velveting (for meats):</strong> Marinating meat (especially chicken or pork) with cornstarch, egg white, and seasonings before stir-frying helps keep it tender and moist.</li>
                     </ul>
-                </dd>
-            </dl>
-        </article>
-
-        <article class="cooking-style">
-            <h3>3. Stir-Frying</h3>
-            <dl>
-                <dt>Overview & Principles:</dt>
-                <dd>A fast cooking method originating in China, done in a wok or a large skillet over high heat with a small amount of oil. Ingredients are cut into small, uniform pieces and stirred continuously to ensure even cooking, preserving their texture, color, and nutrients.</dd>
-                <dt>Cultural/Regional Significance:</dt>
-                <dd>
+                    <h4>Common Mistakes & Troubleshooting:</h4>
+                        <dl>
+                            <dt>Soggy/Steamed Vegetables, Not Crisp-Tender:</dt><dd>Wok/pan not hot enough, overcrowded, or too much liquid added too soon. [10] Solution: Ensure high heat, cook in batches, add sauce at the very end.</dd>
+                            <dt>Meat is Tough:</dt><dd>Overcooked, or not prepared properly (e.g., not velveted for certain cuts). Solution: Cook protein quickly until just done, consider velveting.</dd>
+                            <dt>Uneven Cooking:</dt><dd>Ingredients not cut uniformly, or not stirred enough. Solution: Consistent knife cuts, constant motion.</dd>
+                            <dt>Sauce is Too Thin or Too Thick:</dt><dd>Incorrect ratio of liquid to thickener (cornstarch) in the sauce. Solution: Adjust cornstarch slurry – add more for thicker, dilute with a little stock/water if too thick (before adding to wok).</dd>
+                        </dl>
+                    <h4>Key Resources & Further Learning:</h4>
                     <ul>
-                        <li><strong>China:</strong> A fundamental technique in Chinese cuisine, with regional variations. The wok is an iconic tool. Developed as a fuel-efficient cooking method. The term "chao" (炒) refers to this technique.</li>
-                        <li><strong>Southeast Asia:</strong> Widely adopted and adapted in Thai (e.g., Pad Thai), Vietnamese (e.g., pho xao), Malaysian, Singaporean, and Indonesian cooking, often incorporating local spices and ingredients.</li>
-                        <li><strong>Global Influence:</strong> Popular worldwide for its speed, versatility, and ability to create flavorful, healthy meals.</li>
+                        <li><a href="https://www.seriouseats.com/essential-stir-fry-recipes-and-techniques" target="_blank">Serious Eats: Essential Stir-Fry Recipes and Techniques</a></li>
+                        <li><a href="https://www.thekitchn.com/how-to-stir-fry-vegetables-cooking-lessons-from-the-kitchn-116376" target="_blank">The Kitchn: How To Stir-Fry Vegetables</a>. [34]</li>
+                        <li><a href="https://www.youtube.com/c/ChineseCookingDemystified" target="_blank">Watch: Chinese Cooking Demystified (YouTube Channel) - In-depth traditional techniques.</a></li>
+                        <li><a href="https://www.masterclass.com/articles/how-to-stir-fry" target="_blank">MasterClass: How to Stir-Fry</a>. [10]</li>
                     </ul>
-                </dd>
-                <dt>Key Techniques Applied:</dt>
-                <dd>Knife Skills (uniform cutting), Sautéing (adapted for high heat and speed), Temperature Control, Proper Seasoning.</dd>
-                <dt>Illustrative Dish Examples:</dt>
-                <dd>
+                </div>
+            </div>
+
+             <div class="collapsible-item" id="sous-vide">
+                <div class="collapsible-header" role="button" tabindex="0" aria-expanded="false" aria-controls="content-sous-vide">
+                    <div class="collapsible-title-group">
+                        <i class="bi bi-thermometer-sun collapsible-icon-main"></i>
+                        <h3 class="collapsible-title">Sous-Vide</h3>
+                    </div>
+                    <i class="bi bi-chevron-down collapsible-icon-toggle"></i>
+                </div>
+                <div class="collapsible-content" id="content-sous-vide" role="region" aria-labelledby="sous-vide">
+                    <h4>Detailed Explanation:</h4>
+                    <p>Sous-vide (French for "under vacuum") is a cooking method where food is vacuum-sealed in a bag and then cooked to a very precise temperature in a water bath. Unlike traditional methods, sous-vide cooks food edge-to-edge to the exact desired doneness without the risk of overcooking the exterior while waiting for the interior to cook.</p>
+                    <p><strong>Principles:</strong> Precise temperature control of the water bath is paramount. The food cannot get hotter than the water it's in, allowing for incredibly consistent and perfectly cooked results. A final sear is often applied after sous-vide cooking to develop color and crust.</p>
+                    <h4>Cultural & Historical Context:</h4>
+                    <dd>Developed in France in the mid-1970s by Georges Pralus for Restaurant Troisgros to cook foie gras with minimal shrinkage. Dr. Bruno Goussault further researched and refined the method, applying it to various ingredients and popularizing it in high-end restaurants.
+                        <br>- <strong>Restaurant Innovation:</strong> Initially a technique for professional kitchens due to equipment cost and complexity.
+                        <br>- <strong>Home Adoption:</strong> In recent years, affordable immersion circulators have made sous-vide accessible to home cooks, leading to a surge in its popularity for achieving restaurant-quality results.</dd>
+                    <h4>Key Techniques Applied:</h4>
                     <ul>
-                        <li><strong>Kung Pao Chicken (Sichuan, China):</strong> A spicy, stir-fried Chinese dish made with chicken, peanuts, vegetables (like bell peppers and scallions), and chili peppers. The stir-frying technique quickly cooks the small pieces of chicken and vegetables, melding the bold sweet, sour, and savory flavors of the sauce while keeping the vegetables crisp-tender.</li>
-                        <li><strong>Pad Thai (Thailand):</strong> Thailand's national stir-fried noodle dish made with rice noodles, shrimp or chicken (or tofu), peanuts, scrambled egg, and bean sprouts, flavored with tamarind pulp, fish sauce, garlic, chili, and sugar. Stir-frying in a hot wok quickly cooks all ingredients, coating the noodles with the sauce and creating a harmonious blend of textures and flavors.</li>
-                        <li><strong>Beef and Broccoli (Chinese-American):</strong> A popular dish featuring slices of beef and broccoli florets stir-fried in a savory oyster sauce or soy sauce-based brown sauce. The high heat of stir-frying quickly sears the beef and tender-crisps the broccoli, allowing them to absorb the sauce effectively.</li>
+                        <li><strong>Temperature Control (Part 2):</strong> The core of sous-vide. The immersion circulator maintains an exact water temperature.</li>
+                        <li><strong>Searing (Part 2):</strong> Often used as a finishing step after sous-vide to create Maillard browning and a desirable crust.</li>
+                        <li><strong>Food Safety (Part 1):</strong> Understanding safe cooking times and temperatures for different foods is crucial, especially for longer cooks.</li>
                     </ul>
-                </dd>
-            </dl>
-        </article>
-
-        <article class="cooking-style">
-            <h3>4. Sous-Vide</h3>
-            <dl>
-                <dt>Overview & Principles:</dt>
-                <dd>French for "under vacuum," this technique involves vacuum-sealing food in a bag and then cooking it in a precisely regulated water bath at a consistent, relatively low temperature for an extended period. This results in exceptionally even cooking from edge to edge, and high moisture retention. Often, a final sear is applied to develop color and crust.</dd>
-                <dt>Cultural/Regional Significance:</dt>
-                <dd>
+                    <h4>Illustrative Dish Examples (Elaborated):</h4>
+                    <dd><strong>Perfect Medium-Rare Steak (e.g., Ribeye):</strong> Steak seasoned and vacuum-sealed, then cooked in a water bath at ~130-135°F (54-57°C) for 1-4 hours (depending on thickness). It's then removed from the bag, patted very dry, and quickly seared in a very hot pan or on a grill for 30-60 seconds per side to develop a crust without overcooking the perfectly done interior.</dd>
+                    <dd><strong>Tender Chicken Breast:</strong> Chicken breast, which can easily dry out, can be cooked sous-vide (e.g., at 145-150°F / 63-66°C) to be incredibly juicy and tender all the way through. It can then be seared or used in salads/sandwiches.</dd>
+                    <h4>Practical Tips for Mastery:</h4>
                     <ul>
-                        <li><strong>France (Modern):</strong> Developed in France in the 1970s by chefs looking for ways to improve the texture and consistency of cooked foods, particularly foie gras. Initially adopted in high-end restaurant kitchens.</li>
-                        <li><strong>Global (Professional & Home):</strong> Has become increasingly popular in professional kitchens worldwide for its precision and consistency. More recently, affordable immersion circulators have made it accessible to home cooks.</li>
+                        <li><strong>Ensure a Good Seal:</strong> Air in the bag can lead to uneven cooking and cause the bag to float. Use a vacuum sealer or the water displacement method for zip-top bags.</li>
+                        <li><strong>Weight Bags if Necessary:</strong> Some foods might float; use a weight (e.g., a heavy spoon in the bag, or a clip with a weight) to keep them submerged.</li>
+                        <li><strong>Pre-Sear and Post-Sear:</strong> Some prefer to sear before sous-viding for deeper flavor development, while most sear after. Always pat food extremely dry before the post-sear for the best crust.</li>
+                        <li><strong>Don't Overcrowd Water Bath:</strong> Ensure water can circulate freely around all bags.</li>
+                        <li><strong>Long Cooks for Tough Cuts:</strong> Sous-vide can tenderize tough cuts (like brisket or pork shoulder) over very long cooking times (24-72 hours) at precise temperatures.</li>
+                        <li><strong>Use an Ice Bath for Batch Cooking/Cooling:</strong> If not searing immediately, rapidly chill cooked food in an ice bath before refrigerating or freezing.</li>
                     </ul>
-                </dd>
-                <dt>Key Techniques Applied:</dt>
-                <dd>Temperature Control (ultra-precise), often Searing (as a finishing step), Proper Seasoning (flavors infuse deeply).</dd>
-                <dt>Illustrative Dish Examples:</dt>
-                <dd>
+<h4>Common Mistakes & Troubleshooting:</h4>
+                        <dl>
+                            <dt>Bag Floating:</dt><dd>Air in the bag or food is less dense than water. Solution: Ensure a good vacuum seal, use the water displacement method carefully, or weigh the bag down.</dd>
+                            <dt>Mushy Texture (especially fish/delicate items):</dt><dd>Cooked for too long, even at the correct temperature. Solution: Follow recommended time ranges; delicate items don't benefit from excessively long cooks.</dd>
+                            <dt>Poor Sear After Sous-Vide:</dt><dd>Food surface not dried thoroughly before searing, or pan not hot enough. Solution: Pat food extremely dry with paper towels, use a very hot pan with appropriate fat.</dd>
+                            <dt>Pale/Unappetizing Appearance (if not seared):</dt><dd>Sous-vide alone doesn't create browning. Solution: Always plan for a searing step if a browned crust is desired.</dd>
+                        </dl>
+                    <h4>Key Resources & Further Learning:</h4>
                     <ul>
-                        <li><strong>Sous-Vide Steak (Modern, Global):</strong> A steak (e.g., ribeye, filet mignon) is seasoned, vacuum-sealed, and cooked in a water bath to the exact desired internal temperature (e.g., 130°F for medium-rare). It's then removed, patted dry, and quickly seared in a very hot pan or on a grill to create a flavorful crust. Sous-vide ensures perfect doneness throughout the steak with no overcooked outer layer.</li>
-                        <li><strong>Sous-Vide Salmon (Modern, Global):</strong> Salmon fillets are seasoned (with herbs, lemon), vacuum-sealed, and cooked in a water bath at a lower temperature (e.g., 115-125°F) than traditional methods. This results in incredibly moist, flaky, and evenly cooked fish that is difficult to achieve otherwise.</li>
-                        <li><strong>Sous-Vide Eggs (Modern, Global):</strong> Eggs (often still in their shells or cracked into bags) are cooked at precise temperatures to achieve specific yolk and white textures, from very runny (for "63-degree egg" often used in restaurants) to perfectly soft-boiled or poached.</li>
+                        <li><a href="https://www.seriouseats.com/sous-vide-101-introduction" target="_blank">Serious Eats: Sous Vide 101 - Comprehensive guides and recipes.</a></li>
+                        <li><a href="https://anovaculinary.com/pages/what-is-sous-vide" target="_blank">Anova Culinary: What is Sous Vide?</a></li>
+                        <li><a href="https://www.youtube.com/results?search_query=sous+vide+everything" target="_blank">Watch: Sous Vide Everything (YouTube Channel for diverse experiments)</a></li>
+                        <li><a href="https://www.chefsteps.com/activities/sous-vide-cooking-a-beginners-guide" target="_blank">ChefSteps: Sous Vide Cooking: A Beginner's Guide</a></li>
                     </ul>
-                </dd>
-            </dl>
-        </article>
-
-        <article class="cooking-style">
-            <h3>5. Stewing/Braising</h3>
-            <dl>
-                <dt>Overview & Principles:</dt>
-                <dd>Both are slow, moist-heat cooking methods. <strong>Stewing</strong> typically involves cutting ingredients (meat and/or vegetables) into smaller, uniform pieces that are completely submerged in liquid and gently simmered until tender. <strong>Braising</strong> (as detailed in Part 2) usually involves larger cuts of meat that are first browned and then cooked in a smaller amount of liquid that only partially covers the meat. Both methods excel at tenderizing tougher cuts of meat and melding flavors.</dd>
-                <dt>Cultural/Regional Significance:</dt> Stews are found in nearly every culinary tradition, often born from frugality and the need to make tougher ingredients palatable and stretch resources.
-                <dd>
+                </div>
+            </div>
+
+            <div class="collapsible-item" id="stewing">
+                <div class="collapsible-header" role="button" tabindex="0" aria-expanded="false" aria-controls="content-stewing">
+                    <div class="collapsible-title-group">
+                        <i class="bi bi-hr collapsible-icon-main"></i>
+                        <h3 class="collapsible-title">Stewing</h3>
+                    </div>
+                    <i class="bi bi-chevron-down collapsible-icon-toggle"></i>
+                </div>
+                <div class="collapsible-content" id="content-stewing" role="region" aria-labelledby="stewing">
+                    <h4>Detailed Explanation:</h4>
+                    <p>Stewing is a combination cooking method similar to braising, but typically involves smaller, uniform pieces of food that are completely submerged in cooking liquid. [12, 23] The ingredients are simmered slowly in a covered pot or Dutch oven until very tender, and the cooking liquid becomes part of the flavorful, often thickened, sauce served with the dish. [23]</p>
+                    <p><strong>Principles:</strong> Like braising, stewing aims to tenderize tougher cuts of meat or hearty vegetables through long, slow, moist cooking. The complete submersion in liquid ensures even cooking and moisture retention. [6, 23]</p>
+                    <h4>Cultural & Historical Context:</h4>
+                    <dd>Stewing is one of the most ancient and universal cooking methods, found in virtually every culture as a way to make tough ingredients palatable and to extend flavors.
+                        <br>- <strong>Global Staple:</strong> From Irish Stew (lamb, potatoes, onions) and Hungarian Goulash (beef, paprika) to French Coq au Vin (chicken, wine, mushrooms) [6] and Moroccan Tagines (slow-cooked savory stews, often with fruit and spices), stews are a cornerstone of comfort food worldwide.
+                        <br>- <strong>Economical & Nourishing:</strong> Historically, stews were a way to use cheaper cuts of meat, extend ingredients with vegetables and grains, and create a complete, nutritious meal in one pot.</dd>
+                    <h4>Key Techniques Applied (Similar to Braising but with key differences):</h4>
                     <ul>
-                        <li><strong>Europe:</strong> French <em>Boeuf Bourguignon</em> and <em>Coq au Vin</em>, Irish Stew, Hungarian <em>Goulash</em>, Spanish <em>Cocidos</em>.</li>
-                        <li><strong>Americas:</strong> American beef stew, chili con carne, Caribbean stews featuring local ingredients.</li>
-                        <li><strong>Africa:</strong> Moroccan <em>Tagines</em>, West African groundnut stew.</li>
-                        <li><strong>Asia:</strong> Indian <em>Curries</em> (many of which are stews), Japanese <em>Nikujaga</em>, Filipino <em>Adobo</em>.</li>
+                        <li><strong>Searing (Part 2):</strong> Smaller pieces of meat are often browned first for flavor. [12]</li>
+                        <li><strong>Sautéing Aromatics (Part 2):</strong> Building a flavor base with onions, garlic, etc.</li>
+                        <li><strong>Temperature Control (Part 2):</strong> Maintaining a gentle simmer is crucial. [12]</li>
+                        <li><strong>Thickening Agents (Part 2 - Sauce-Making):</strong> Stews are often thickened with flour (dredging meat or making a roux), cornstarch, or natural reduction.</li>
+                        <li><strong>Knife Skills (Part 2):</strong> Uniform pieces for even cooking.</li>
                     </ul>
-                </dd>
-                <dt>Key Techniques Applied:</dt>
-                <dd>Searing (often for braising, sometimes for stewing meat), Sautéing (aromatics), Reduction (to thicken sauce), Temperature Control (low and slow), Proper Seasoning.</dd>
-                <dt>Illustrative Dish Examples:</dt>
-                <dd>
+                    <h4>Illustrative Dish Examples (Elaborated):</h4>
+                    <dd><strong>Irish Stew (Ireland):</strong> Traditionally made with mutton (or lamb), potatoes, onions, and parsley. Sometimes carrots are included. The ingredients are simmered slowly in water or stock until the meat is tender and the potatoes break down slightly to thicken the broth. Simple, hearty, and reliant on the quality of its core ingredients.</dd>
+                    <dd><strong>Beef Chili (Americas, particularly Texas/Southwestern US):</strong> A spicy stew typically featuring beef (often ground or cubed), chili peppers (fresh or powdered), tomatoes, beans (though Texan chili often omits beans), and spices like cumin, oregano, and garlic. Slow-simmered to meld flavors and tenderize meat.</dd>
+                    <h4>Practical Tips for Mastery:</h4>
                     <ul>
-                        <li><strong>Boeuf Bourguignon (France):</strong> A classic French beef stew where beef (traditionally Burgundy cattle, using tougher cuts like chuck) is braised in red Burgundy wine with beef broth, lardons (bacon), mushrooms, pearl onions, and garlic. The slow stewing/braising tenderizes the beef and creates a deeply flavored, rich sauce.</li>
-                        <li><strong>Irish Stew (Ireland):</strong> Traditionally made with mutton (or lamb), potatoes, onions, and parsley. Carrots are often added. It's a simple, hearty stew where the ingredients are simmered together, with the potatoes often breaking down to naturally thicken the broth. The style is defined by its simplicity and nourishing qualities.</li>
-                        <li><strong>Chicken Tagine with Apricots and Almonds (Morocco):</strong> A slow-cooked savory stew named after the earthenware pot in which it is traditionally cooked. Chicken pieces are simmered with spices (like ginger, turmeric, cinnamon, cumin), onions, garlic, dried apricots (for sweetness), and almonds (for texture) in a flavorful broth. The gentle stewing melds the complex sweet and savory flavors and makes the chicken very tender.</li>
+                        <li><strong>Brown Meat in Batches:</strong> If searing meat pieces, do it in batches to avoid overcrowding and ensure good browning.</li>
+                        <li><strong>Layer Flavors:</strong> Sauté aromatics well, bloom spices in fat.</li>
+                        <li><strong>Gentle Simmer:</strong> Avoid a rapid boil, which can make meat tough. The liquid should just barely bubble.</li>
+                        <li><strong>Covered Cooking:</strong> Use a tight-fitting lid to prevent too much liquid evaporation (unless a reduction is specifically desired at the end).</li>
+                        <li><strong>Taste and Adjust:</strong> Season throughout the cooking process. Add fresh herbs towards the end for brightness.</li>
+                        <li><strong>Resting (Optional but Good):</strong> Like many slow-cooked dishes, stews often taste even better the next day as flavors meld. [12]</li>
                     </ul>
-                </dd>
-            </dl>
-        </article>
-
-        <article class="cooking-style">
-            <h3>6. Deep-Frying</h3>
-            <dl>
-                <dt>Overview & Principles:</dt>
-                <dd>Cooking food by submerging it completely in hot oil. The high temperature of the oil (typically 325-375°F / 160-190°C) cooks the food quickly, creating a crispy, golden-brown exterior and a moist interior. Proper temperature control is crucial to avoid greasy or burnt food.</dd>
-                <dt>Cultural/Regional Significance:</dt>
-                <dd>
+                    <h4>Common Mistakes & Troubleshooting:</h4>
+                        <dl>
+                            <dt>Tough Meat:</dt><dd>Cooked too quickly (at too high a heat) or not long enough. Solution: Ensure a very gentle simmer and cook until fork-tender. [14]</dd>
+                            <dt>Watery/Thin Stew:</dt><dd>Too much liquid, or not enough thickener/reduction. Solution: Remove lid for the last 30-60 minutes of cooking to allow liquid to reduce, or thicken with a cornstarch slurry or by mashing some of the cooked vegetables (like potatoes) against the side of the pot.</dd>
+                            <dt>Bland Flavor:</dt><dd>Insufficient browning of meat/aromatics, under-seasoning, or weak stock. Solution: Ensure good browning, season generously at each stage, use flavorful stock.</dd>
+                            <dt>Vegetables Disintegrated:</dt><dd>Added too early or cut too small. Solution: Add softer vegetables later in the cooking process, or cut heartier vegetables into larger chunks. [12]</dd>
+                        </dl>
+                    <h4>Key Resources & Further Learning:</h4>
                     <ul>
-                        <li><strong>Global:</strong> Found in countless cuisines.</li>
-                        <li><strong>USA:</strong> Southern fried chicken, french fries, doughnuts, tempura (adopted from Japan).</li>
-                        <li><strong>Japan:</strong> <em>Tempura</em> (seafood and vegetables lightly battered and deep-fried), <em>Tonkatsu</em> (deep-fried breaded pork cutlet), <em>Karaage</em> (Japanese fried chicken).</li>
-                        <li><strong>Belgium & France:</strong> Famous for <em>frites</em> (french fries).</li>
-                        <li><strong>UK:</strong> Fish and chips.</li>
-                        <li><strong>India:</strong> <em>Pakoras</em>, <em>Samosas</em>, <em>Jalebi</em>.</li>
-                        <li><strong>Southeast Asia:</strong> Fried spring rolls, fried chicken variations.</li>
-                        <li><strong>Latin America:</strong> <em>Churros</em>, <em>Empanadas</em> (often fried).</li>
+                        <li><a href="https://www.thekitchn.com/whats-the-difference-between-braising-and-stewing-222 Ű§Ù„ÙŰ±Ù‚-222984" target="_blank">The Kitchn: What's the Difference Between Braising and Stewing?</a> [23, 12]</li>
+                        <li><a href="https://www.bonappetit.com/test-kitchen/cooking-tips/article/braising-stewing-basics" target="_blank">Bon Appétit: Braising and Stewing Basics</a> [23]</li>
+                        <li><a href="https://www.youtube.com/results?search_query=how+to+make+beef+stew" target="_blank">Watch: How to Make Beef Stew (YouTube Search)</a></li>
+                        <li><a href="https://www.simplyrecipes.com/recipes/beef_stew/" target="_blank">Simply Recipes: Classic Beef Stew</a></li>
                     </ul>
-                </dd>
-                <dt>Key Techniques Applied:</dt>
-                <dd>Temperature Control (critical), Knife Skills (for uniform pieces), Battering/Breading (common preparation), Proper Seasoning (before and/or after frying).</dd>
-                <dt>Illustrative Dish Examples:</dt>
-                <dd>
+                </div>
+            </div>
+
+            <div class="collapsible-item" id="deep-frying">
+                <div class="collapsible-header" role="button" tabindex="0" aria-expanded="false" aria-controls="content-deep-frying">
+                    <div class="collapsible-title-group">
+                        <i class="bi bi-droplet-fill collapsible-icon-main"></i>
+                        <h3 class="collapsible-title">Deep-Frying</h3>
+                    </div>
+                    <i class="bi bi-chevron-down collapsible-icon-toggle"></i>
+                </div>
+                <div class="collapsible-content" id="content-deep-frying" role="region" aria-labelledby="deep-frying">
+                    <h4>Detailed Explanation:</h4>
+                    <p>Deep-frying is a cooking method where food is completely submerged in hot oil. [3] The high temperature of the oil (typically 325-375°F or 160-190°C) cooks the food quickly, creating a crispy, golden-brown exterior and a moist interior. Water in the food rapidly turns to steam, cooking the food from the inside out while preventing oil from penetrating too deeply if done correctly.</p>
+                    <p><strong>Principles:</strong> Maintaining the correct oil temperature is crucial. Too low, and the food absorbs too much oil, becoming greasy. Too high, and the exterior burns before the interior is cooked. Safety is paramount due to the high temperature of the oil. [13, 16]</p>
+                    <h4>Cultural & Historical Context:</h4>
+                    <dd>Frying food in oil has ancient roots, with evidence from Ancient Egypt and Rome. Deep-frying as we know it became more widespread with the increased availability of cooking oils and specialized equipment.
+                        <br>- <strong>Global Phenomenon:</strong> From Japanese tempura and American fried chicken to Belgian frites and Indian pakoras, deep-fried foods are beloved worldwide.
+                        <br>- <strong>Street Food & Fast Food Staple:</strong> Its ability to cook food quickly and create appealing textures and flavors has made deep-frying a dominant method in street food and fast-food industries.</dd>
+                    <h4>Key Techniques Applied:</h4>
                     <ul>
-                        <li><strong>Tempura (Japan):</strong> Seafood and vegetables are lightly coated in a delicate batter (flour, egg, ice water) and quickly deep-fried in very hot oil. The style results in a remarkably light, crispy, and non-greasy coating that highlights the fresh ingredients within.</li>
-                        <li><strong>Southern Fried Chicken (USA):</strong> Chicken pieces are typically brined or soaked in buttermilk, then dredged in seasoned flour (and sometimes spices like paprika, black pepper, garlic powder) and deep-fried until golden brown and cooked through. The deep-frying creates a signature crispy crust and juicy interior.</li>
-                        <li><strong>Churros (Spain, Portugal, Latin America):</strong> A fried-dough pastry, typically choux-based, extruded into strips, deep-fried until crispy, and then often dusted with cinnamon sugar. The deep-frying process puffs up the dough and creates a crunchy exterior with a tender inside.</li>
+                        <li><strong>Temperature Control (Part 2):</strong> Essential for successful deep-frying. Use a thermometer. [13]</li>
+                        <li><strong>Proper Seasoning (Part 2):</strong> Seasoning the batter/coating and the food itself. Salt food immediately after frying.</li>
+                        <li><strong>Coatings/Batters:</strong> Many deep-fried foods are coated (flour, breadcrumbs) or battered (liquid mixture, often with flour and a leavener) to create a crispy crust and protect the food.</li>
+                        <li><strong>Food Safety (Part 1):</strong> Ensure food is cooked to safe internal temperatures, especially proteins like chicken. [16]</li>
                     </ul>
-                </dd>
-            </dl>
-        </article>
-
-        <article class="cooking-style">
-            <h3>7. Steaming</h3>
-            <dl>
-                <dt>Overview & Principles:</dt>
-                <dd>Cooking food using the hot steam produced from boiling water. Food is typically placed in a steamer basket or on a rack above the simmering water, covered to trap the steam. It's a gentle, moist-heat cooking method that helps retain nutrients, color, and moisture.</dd>
-                <dt>Cultural/Regional Significance:</dt>
-                <dd>
+                    <h4>Illustrative Dish Examples (Elaborated):</h4>
+                    <dd><strong>Southern Fried Chicken (USA):</strong> Chicken pieces are typically brined or marinated, then dredged in seasoned flour (sometimes with spices like paprika, cayenne, garlic powder) and deep-fried until golden brown and cooked through. The crust should be crispy and the meat juicy.</dd>
+                    <dd><strong>Vegetable Tempura (Japan):</strong> Assorted vegetables (e.g., sweet potato, broccoli, bell pepper, shrimp) are lightly coated in a delicate, airy batter (made with flour, egg, and ice-cold water) and quickly deep-fried in very hot oil until pale golden and crispy. Served with a dipping sauce (tentsuyu).</dd>
+                    <h4>Practical Tips for Mastery & Safety:</h4>
                     <ul>
-                        <li><strong>Asia (especially China, Japan, Vietnam, Thailand):</strong> A very prominent cooking method. Chinese <em>dim sum</em> (e.g., dumplings, buns), steamed fish, and vegetables. Japanese <em>chawanmushi</em> (savory egg custard), steamed buns (<em>manjĆ«</em>). Vietnamese <em>bĂĄnh cuốn</em> (steamed rice rolls).</li>
-                        <li><strong>India:</strong> <em>Idli</em> (savory rice cakes), <em>dhokla</em> (savory steamed cake).</li>
-                        <li><strong>Latin America:</strong> <em>Tamales</em> (dough steamed in corn husks or banana leaves).</li>
-                        <li><strong>Global Health-Conscious Cooking:</strong> Popular worldwide for its healthy attributes (no added fat required).</li>
+                        <li><strong>Use a Deep, Heavy Pot or a Deep Fryer:</strong> A Dutch oven works well. Fill no more than halfway (or one-third for some recommendations) with oil to prevent boil-overs. [13, 17, 22]</li>
+                        <li><strong>Choose the Right Oil:</strong> Use an oil with a high smoke point (e.g., peanut, canola, vegetable, grapeseed).</li>
+                        <li><strong>Monitor Oil Temperature:</strong> Use a deep-fry thermometer or a fryer with a thermostat. Adjust heat as needed to maintain temperature, as adding food will cool it down. [13]</li>
+                        <li><strong>Dry Food Thoroughly:</strong> Water causes hot oil to splatter dangerously. Pat food dry before coating or adding to oil. [13, 17, 22]</li>
+                        <li><strong>Don't Overcrowd:</strong> Fry in small batches to maintain oil temperature and ensure even cooking. [16]</li>
+                        <li><strong>Gently Lower Food:</strong> Use tongs or a spider/slotted spoon to gently add and remove food from the oil.</li>
+                        <li><strong>Drain Fried Food:</strong> Remove food and let it drain on a wire rack set over a baking sheet to keep it crispy. Season with salt immediately after removing from oil.</li>
+                        <li><strong>Safety First:</strong>
+                            <br>- Never leave hot oil unattended. [13]
+                            <br>- Keep a lid àȘ…àȘ„àȘ”àȘŸ baking sheet nearby to smother flames if a grease fire starts. [13, 22]
+                            <br>- NEVER use water to extinguish a grease fire; it will cause a dangerous eruption. [13, 16]
+                            <br>- Turn off heat if oil starts to smoke excessively. [13, 17]
+                            <br>- Let oil cool completely before disposing of it (pour back into original container, never down the drain). [13]
+                            <br>- Keep children and pets away from the frying area. [13]
                     </ul>
-                </dd>
-                <dt>Key Techniques Applied:</dt>
-                <dd>Temperature Control (maintaining a steady supply of steam), Knife Skills (for even cooking).</dd>
-                <dt>Illustrative Dish Examples:</dt>
-                <dd>
+                    <h4>Common Mistakes & Troubleshooting:</h4>
+                        <dl>
+                            <dt>Greasy/Soggy Food:</dt><dd>Oil temperature too low, or food overcrowded. Solution: Ensure correct oil temp, fry in smaller batches.</dd>
+                            <dt>Burnt Exterior, Raw Interior:</dt><dd>Oil temperature too high. Solution: Lower oil temperature, ensure food pieces aren't too large/thick for the cooking time.</dd>
+                            <dt>Breading/Batter Falls Off:</dt><dd>Food too moist before coating, oil temperature too low initially, or too much agitation. Solution: Pat food dry, ensure oil is hot, handle food gently when first added.</dd>
+                            <dt>Oil Splattering Excessively:</dt><dd>Food was wet. Solution: Dry food thoroughly before adding to oil. [17]</dd>
+                        </dl>
+                    <h4>Key Resources & Further Learning:</h4>
                     <ul>
-                        <li><strong>Steamed Whole Fish with Ginger and Scallions (China):</strong> A whole fish (like sea bass or snapper) is seasoned with ginger, scallions, and often soy sauce and Shaoxing wine, then steamed until just cooked through. Steaming preserves the delicate texture and flavor of the fish, and the aromatics infuse it beautifully. A tight lid is essential.</li>
-                        <li><strong>Har Gow (Shrimp Dumplings) (China - Dim Sum):</strong> Delicate shrimp dumplings with a translucent, chewy wrapper made from wheat starch and tapioca flour. They are steamed in bamboo baskets until the wrapper is clear and the shrimp is cooked. Steaming is crucial for the distinct texture of the wrapper and the succulent filling.</li>
-                        <li><strong>Idli (South India):</strong> Savory steamed cakes made from a fermented batter of rice and black lentils. The batter is poured into molds and steamed until fluffy and cooked through. Steaming gives idlis their characteristic light, spongy texture.</li>
+                        <li><a href="https://www.seriouseats.com/deep-frying-tips-techniques" target="_blank">Serious Eats: Tips and Techniques for Deep Frying</a></li>
+                        <li><a href="https://www.foodnetwork.com/how-to/packages/food-network-essentials/how-to-deep-fry-safely" target="_blank">Food Network: How to Deep-Fry Safely</a>. [13, 16]</li>
+                        <li><a href="https://www.youtube.com/results?search_query=deep+frying+for+beginners" target="_blank">Watch: Deep Frying for Beginners (YouTube Search)</a></li>
+                        <li><a href="https://www.usfa.fema.gov/prevention/outreach/cooking.html" target="_blank">U.S. Fire Administration: Cooking Fire Safety</a></li>
                     </ul>
-                </dd>
-            </dl>
-        </article>
-    </section>
+                </div>
+            </div>
+
+            <div class="collapsible-item" id="steaming">
+                <div class="collapsible-header" role="button" tabindex="0" aria-expanded="false" aria-controls="content-steaming">
+                    <div class="collapsible-title-group">
+                        <i class="bi bi-cloud-fill collapsible-icon-main"></i>
+                        <h3 class="collapsible-title">Steaming</h3>
+                    </div>
+                    <i class="bi bi-chevron-down collapsible-icon-toggle"></i>
+                </div>
+                <div class="collapsible-content" id="content-steaming" role="region" aria-labelledby="steaming">
+                    <h4>Detailed Explanation:</h4>
+                    <p>Steaming is a moist-heat cooking method that uses the hot vapor produced from boiling water (or other liquids like stock) to cook food. The food is placed in a vessel above the boiling liquid, not in direct contact with it, allowing the steam to circulate and cook it gently and evenly. [8, 31]</p>
+                    <p><strong>Principles:</strong> Heat is transferred to the food via the condensation of steam. It's a relatively gentle cooking method that helps retain moisture, nutrients, color, and natural flavor of the food. [31] Temperature control involves managing the intensity of the boil to produce sufficient steam.</p>
+                    <h4>Cultural & Historical Context:</h4>
+                    <dd>Steaming has been used for thousands of years, particularly prominent in Asian cuisines.
+                        <br>- <strong>Asia (China, Japan, Vietnam, Thailand, etc.):</strong> A fundamental cooking technique. Bamboo steamers are iconic for cooking a wide array of dishes, from dumplings (dim sum) and buns (bao) to fish, vegetables, and even rice. [8] Steaming preserves delicate textures and flavors, aligning with culinary philosophies that emphasize natural tastes.
+                        <br>- <strong>Global Health Trend:</strong> Recognized worldwide as a healthy cooking method as it requires no added fats and helps preserve water-soluble vitamins. [31]</dd>
+                    <h4>Key Techniques Applied:</h4>
+                    <ul>
+                        <li><strong>Temperature Control (Part 2):</strong> Ensuring water is boiling and producing enough steam. [8]</li>
+                        <li><strong>Knife Skills (Part 2):</strong> Uniform pieces for even cooking, especially for vegetables. [37]</li>
+                        <li><strong>Food Safety (Part 1):</strong> Ensuring food, especially proteins like fish or chicken, is cooked to a safe internal temperature.</li>
+                    </ul>
+                    <h4>Illustrative Dish Examples (Elaborated):</h4>
+                    <dd><strong>Steamed Fish with Ginger and Scallions (Chinese):</strong> A whole fish or fillets are placed on a heatproof plate with ginger and scallions, then steamed over rapidly boiling water until just cooked through. It's often finished with a drizzle of hot oil and soy sauce. The steaming method keeps the fish incredibly moist and delicate.</dd>
+                    <dd><strong>Steamed Asparagus (Global):</strong> Asparagus spears are placed in a steamer basket over boiling water and cooked for a few minutes until tender-crisp and bright green. [8, 37] This simple method highlights the asparagus's natural flavor and is a quick way to prepare a healthy side dish.</dd>
+                    <h4>Practical Tips for Mastery:</h4>
+                    <ul>
+                        <li><strong>Use a Steamer Setup:</strong> This can be a dedicated electric steamer, a pot with a steamer basket insert [8, 11], a bamboo steamer set over a wok or pot [8], or even a colander set in a pot with a lid [41].</li>
+                        <li><strong>Ensure Water Doesn't Touch Food:</strong> The food should be elevated above the boiling water. [8]</li>
+                        <li><strong>Maintain a Good Boil:</strong> Keep the water at a steady boil to produce continuous steam. Replenish with hot water if it runs low during long steaming times. [8]</li>
+                        <li><strong>Don't Overcrowd the Steamer:</strong> Allow space for steam to circulate around the food for even cooking. [31] Steam in batches if necessary.</li>
+                        <li><strong>Cover Tightly:</strong> Keep the lid on to trap the steam. If using a pot and colander, ensure the lid fits well. [8]</li>
+                        <li><strong>Arrange Food Thoughtfully:</strong> Place denser items or those requiring longer cooking times at the bottom of tiered steamers, or add quicker-cooking items later. [37]</li>
+                        <li><strong>Be Careful of Steam:</strong> Open the lid away from your face to avoid steam burns.</li>
+                    </ul>
+                    <h4>Common Mistakes & Troubleshooting:</h4>
+                        <dl>
+                            <dt>Food is Soggy or Waterlogged:</dt><dd>Water level too high and touching the food, or condensation dripping directly onto the food. Solution: Ensure food is above water, consider loosely tenting food within the steamer if condensation is an issue, or use a plate to catch drips in some setups.</dd>
+                            <dt>Uneven Cooking:</dt><dd>Steamer overcrowded, steam not circulating properly, or pieces not uniform. Solution: Don't overcrowd, ensure good steam flow, cut pieces uniformly. [37]</dd>
+                            <dt>Food is Undercooked:</dt><dd>Not enough steam (water not boiling vigorously enough), lid not tight, or insufficient cooking time. Solution: Maintain a strong boil, ensure a good seal, check for doneness (vegetables tender-crisp, fish opaque/flaky). [8]</dd>
+                            <dt>Food is Overcooked/Mushy:</dt><dd>Steamed for too long. Solution: Check for doneness frequently, especially for delicate items like vegetables or fish. [37]</dd>
+                        </dl>
+                    <h4>Key Resources & Further Learning:</h4>
+                    <ul>
+                        <li><a href="https://www.thespruceeats.com/how-to-steam-vegetables-996164" target="_blank">The Spruce Eats: How to Steam Vegetables</a>. [41]</li>
+                        <li><a href="https://www.bbcgoodfood.com/howto/guide/how-steam-vegetables" target="_blank">BBC Good Food: How to Steam Vegetables</a>. [11]</li>
+                        <li><a href="https://www.youtube.com/results?search_query=how+to+steam+fish+chinese+style" target="_blank">Watch: How to Steam Fish Chinese Style (YouTube Search)</a></li>
+                        <li><a href="https://www.foodnetwork.com/how-to/articles/how-to-steam-food" target="_blank">Food Network: What is Steaming? And How to Steam</a>. [8]</li>
+                    </ul>
+                </div>
+            </div>
+
+        </section>
+
+        <!-- Conclusion Section -->
+        <section class="main-section" id="conclusion-section">
+             <div class="main-section-header">
+                <h2><i class="bi bi-flag-fill"></i>Conclusion & Next Steps</h2>
+            </div>
+            <p>You've now explored a vast landscape of culinary knowledge, from foundational building blocks to essential techniques and diverse global cooking styles. This cheatsheet is a starting point, a reference, and hopefully, an inspiration. The true learning and joy come from applying this knowledge in your own kitchen.</p>
+            <p><strong>Embrace Experimentation:</strong> Don't be afraid to deviate from recipes once you understand the principles. Substitute ingredients, try new flavor combinations, and make dishes your own. Some of the best discoveries are happy accidents!</p>
+            <p><strong>Practice Consistently:</strong> Repetition builds muscle memory and intuition. The more you practice a technique, the more natural it will become. Don't be discouraged by occasional setbacks; every cook has them. Analyze what went wrong and learn from it.</p>
+            <p><strong>Stay Curious & Keep Learning:</strong> The world of food is endlessly fascinating. Read cookbooks like novels, watch cooking shows with a critical eye, travel (even through food), and talk to other passionate cooks. There's always something new to discover.</p>
+            <h4>Advanced Learning & Specialization:</h4>
+            <p>As you progress, you might find yourself drawn to specific areas of cooking. Consider exploring:</p>
+            <ul class="styled-list">
+                <li><strong>Artisan Bread Baking:</strong> Sourdough, viennoiserie, laminated doughs.</li>
+                <li><strong>Pastry & Patisserie:</strong> Cakes, chocolates, plated desserts.</li>
+                <li><strong>Charcuterie & Food Preservation:</strong> Curing meats, pickling, fermenting.</li>
+                <li><strong>Specific Regional Cuisines:</strong> Deep dives into Thai, Italian, Mexican, Indian, etc.</li>
+                <li><strong>Food Science:</strong> Understanding the chemistry and physics of cooking for greater control.</li>
+            </ul>
+            <h4>Key Resources for Continued Culinary Growth:</h4>
+            <ul>
+                <li><a href="https://www.goodreads.com/shelf/show/culinary-reference" target="_blank">Goodreads: Culinary Reference Books - For timeless knowledge.</a></li>
+                <li><a href="https://www.escoffier.edu/blog/culinary-arts/must-watch-food-documentaries/" target="_blank">Explore Food Documentaries (e.g., Chef's Table, Salt Fat Acid Heat series)</a></li>
+                <li><a href="https://www.youtube.com/c/BonAppetitdotcom" target="_blank">Bon Appétit (YouTube) - Modern recipes and techniques.</a></li>
+                <li><a href="https://www.youtube.com/c/BabishCulinaryUniverse" target="_blank">Binging with Babish / Basics with Babish (YouTube) - Entertaining and educational.</a></li>
+                <li>Consider local cooking classes or workshops for hands-on learning.</li>
+            </ul>
+            <p class="fw-bold mt-4" style="color: var(--color-primary); font-family: var(--font-heading); font-size: 1.2rem;">
+                The most important ingredient in your cooking journey is <strong style="color: var(--color-accent);">passion</strong>. Cook with curiosity, share with generosity, and savor every delicious moment. Happy cooking!
+            </p>
+        </section>
+
+    </div>
+
+    <footer class="footer">
+        <p>&copy; 2024 Interactive Culinary Cheatsheet. Designed to Inspire.</p>
+        <p><a href="#">Back to Top</a></p>
+    </footer>
+
+    <!-- Bootstrap JS Bundle with Popper -->
+    <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
+    <script>
+        document.addEventListener('DOMContentLoaded', function () {
+            const allCollapsibleItems = document.querySelectorAll('.collapsible-item');
+
+            allCollapsibleItems.forEach(item => {
+                const header = item.querySelector('.collapsible-header');
+                const content = item.querySelector('.collapsible-content');
+                const toggleIcon = header.querySelector('.collapsible-icon-toggle');
+
+                // Initialize ARIA attributes
+                const contentId = content.id;
+                header.setAttribute('aria-controls', contentId);
+                content.setAttribute('aria-labelledby', header.id || item.id); // Prefer header ID if set
+
+                header.addEventListener('click', () => {
+                    toggleItem(item);
+                });
+
+                header.addEventListener('keydown', (event) => {
+                    if (event.key === 'Enter' || event.key === ' ') {
+                        event.preventDefault();
+                        toggleItem(item);
+                    }
+                });
+            });
 
-    <section id="conclusion">
-        <h2>Conclusion & Next Steps</h2>
-        <p>Congratulations on reaching this point in your culinary exploration! You've delved into the foundational building blocks, mastered essential techniques, and journeyed through diverse cooking styles from around the globe. Remember, cooking is a continuous adventure, not a destination. The skills and knowledge you've gained are your passport to a world of flavors, creativity, and connection.</p>
+            function toggleItem(item) {
+                const content = item.querySelector('.collapsible-content');
+                const header = item.querySelector('.collapsible-header');
+                const isOpen = item.classList.toggle('is-open');
 
-        <p><strong>Embrace Experimentation:</strong> Don't be afraid to try new recipes, tweak existing ones, or even invent your own dishes. Some of the best culinary discoveries happen by happy accident. Use your understanding of flavor profiles and techniques to guide your experiments. What happens if you add a different herb? Substitute one vegetable for another? Try a new spice blend?</p>
+                header.setAttribute('aria-expanded', isOpen.toString());
+                content.setAttribute('aria-hidden', (!isOpen).toString());
 
-        <p><strong>Practice Consistently:</strong> Like any skill, cooking improves with practice. The more you cook, the more intuitive techniques will become, and the more confident you'll feel in the kitchen. Don't be discouraged by occasional missteps – they are learning opportunities.</p>
+                // The actual show/hide is handled by CSS transitions on max-height and opacity
+                // based on the .is-open class.
+            }
 
-        <p><strong>Stay Curious & Keep Learning:</strong> The world of food is vast and ever-evolving. There's always something new to learn, a different cuisine to explore, or an innovative technique to try.</p>
+            // Expand/Collapse All functionality
+            const expandAllButtons = document.querySelectorAll('.expand-all-btn');
+            const collapseAllButtons = document.querySelectorAll('.collapse-all-btn');
 
-        <h3>Resources for Further Exploration:</h3>
-        <ul>
-            <li><strong>Cookbooks:</strong> From general technique guides to cuisine-specific collections, cookbooks offer a wealth of recipes and knowledge. Look for authors whose style and philosophy resonate with you.</li>
-            <li><strong>Online Recipe Sites & Food Blogs:</strong> The internet is an incredible resource for recipes, video tutorials, and culinary inspiration. Seek out reputable sources.</li>
-            <li><strong>Cooking Shows & Documentaries:</strong> Visual learning can be very effective. Many shows demonstrate techniques and explore food cultures.</li>
-            <li><strong>Cooking Classes (Online or In-Person):</strong> Structured classes can provide hands-on experience and expert guidance.</li>
-            <li><strong>Farmers' Markets & Specialty Food Stores:</strong> Engage with producers, ask questions about ingredients, and get inspired by seasonal offerings.</li>
-            <li><strong>Travel (Armchair or Actual):</strong> Exploring the cuisines of different cultures is a fantastic way to broaden your palate and understanding of food.</li>
-        </ul>
-        <p>The most important ingredient in your cooking journey is passion. Cook with joy, share with love, and savor every moment. Happy cooking!</p>
-    </section>
+            expandAllButtons.forEach(button => {
+                button.addEventListener('click', () => {
+                    const parentSectionId = button.dataset.targetParent;
+                    const parentSection = document.getElementById(parentSectionId);
+                    if (parentSection) {
+                        parentSection.querySelectorAll('.collapsible-item').forEach(item => {
+                            if (!item.classList.contains('is-open')) {
+                                toggleItem(item);
+                            }
+                        });
+                    }
+                });
+            });
 
+            collapseAllButtons.forEach(button => {
+                button.addEventListener('click', () => {
+                    const parentSectionId = button.dataset.targetParent;
+                    const parentSection = document.getElementById(parentSectionId);
+                    if (parentSection) {
+                        parentSection.querySelectorAll('.collapsible-item').forEach(item => {
+                            if (item.classList.contains('is-open')) {
+                                toggleItem(item);
+                            }
+                        });
+                    }
+                });
+            });
+        });
+    </script>
 </body>
 </html>
\ No newline at end of file