
    /* Scoped styles for blog content only - won't affect UEEShop platform */
    .foam-blog-content {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.8;
        color: #333;
    }
    
    .foam-blog-content * {
        box-sizing: border-box;
    }
    
    .foam-blog-content h1 {
        color: #1a365d;
        font-size: 2.2em;
        margin-bottom: 25px;
        margin-top: 0;
        padding-bottom: 15px;
        border-bottom: 4px solid #3182ce;
        line-height: 1.3;
    }
    
    .foam-blog-content h2 {
        color: #2c5282;
        font-size: 1.8em;
        margin-top: 45px;
        margin-bottom: 20px;
        padding-left: 15px;
        border-left: 5px solid #3182ce;
        line-height: 1.4;
    }
    
    .foam-blog-content h3 {
        color: #2d3748;
        font-size: 1.4em;
        margin-top: 30px;
        margin-bottom: 15px;
        line-height: 1.4;
    }
    
    .foam-blog-content h4 {
        color: #2d3748;
        font-size: 1.2em;
        margin-top: 20px;
        margin-bottom: 10px;
        line-height: 1.4;
    }
    
    .foam-blog-content p {
        margin-bottom: 18px;
        line-height: 1.8;
    }
    
    /* Special boxes */
    .foam-blog-content .intro-box {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 30px;
        border-radius: 8px;
        margin: 30px 0;
    }
    
    .foam-blog-content .intro-box p {
        color: white;
        margin-bottom: 15px;
    }
    
    .foam-blog-content .intro-box p:last-child {
        margin-bottom: 0;
    }
    
    .foam-blog-content .highlight-box {
        background: #e6fffa;
        border-left: 5px solid #38b2ac;
        padding: 25px;
        margin: 30px 0;
        border-radius: 4px;
    }
    
    .foam-blog-content .highlight-box h4 {
        margin-top: 0;
        color: #234e52;
    }
    
    .foam-blog-content .warning-box {
        background: #fffaf0;
        border-left: 5px solid #ed8936;
        padding: 25px;
        margin: 30px 0;
        border-radius: 4px;
    }
    
    .foam-blog-content .warning-box h4 {
        margin-top: 0;
        color: #7c2d12;
    }
    
    /* Inquiry Box - Call to Action */
    .foam-blog-content .inquiry-box {
        background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        color: white;
        padding: 35px;
        border-radius: 10px;
        margin: 45px 0;
        text-align: center;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }
    
    .foam-blog-content .inquiry-box h3 {
        color: white;
        margin-top: 0;
        margin-bottom: 15px;
        font-size: 1.8em;
        padding: 0;
        border: none;
    }
    
    .foam-blog-content .inquiry-box p {
        color: white;
        font-size: 1.1em;
        margin-bottom: 25px;
    }
    
    .foam-blog-content .inquiry-buttons {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        flex-wrap: wrap;
        margin-top: 20px;
    }
    
    .foam-blog-content .inquiry-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: white;
        color: #f5576c;
        padding: 15px 30px;
        text-decoration: none;
        border-radius: 50px;
        font-weight: 600;
        font-size: 1.05em;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    }
    
    .foam-blog-content .inquiry-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.25);
        background: #fff5f7;
        color: #f5576c;
        text-decoration: none;
    }
    
    .foam-blog-content .inquiry-btn svg {
        margin-right: 10px;
        width: 24px;
        height: 24px;
        flex-shrink: 0;
    }
    
    /* Tables */
    .foam-blog-content .comparison-table {
        width: 100%;
        margin: 30px 0;
        overflow-x: auto;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        border-radius: 8px;
    }
    
    .foam-blog-content .comparison-table table {
        width: 100%;
        min-width: 600px;
        border-collapse: collapse;
    }
    
    .foam-blog-content .comparison-table th {
        background: #3182ce;
        color: white;
        padding: 15px;
        text-align: left;
        font-weight: 600;
        font-size: 0.95em;
    }
    
    .foam-blog-content .comparison-table td {
        padding: 14px 15px;
        border-bottom: 1px solid #e2e8f0;
        background: white;
    }
    
    .foam-blog-content .comparison-table tr:last-child td {
        border-bottom: none;
    }
    
    .foam-blog-content .comparison-table tr:hover td {
        background: #f7fafc;
    }
    
    /* Pros & Cons Layout */
    .foam-blog-content .pros-cons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 25px;
        margin: 35px 0;
    }
    
    .foam-blog-content .pros {
        background: #f0fff4;
        border: 2px solid #48bb78;
        border-radius: 8px;
        padding: 25px;
    }
    
    .foam-blog-content .cons {
        background: #fff5f5;
        border: 2px solid #fc8181;
        border-radius: 8px;
        padding: 25px;
    }
    
    .foam-blog-content .pros h4,
    .foam-blog-content .cons h4 {
        margin-top: 0;
        font-size: 1.3em;
    }
    
    /* Lists */
    .foam-blog-content ul,
    .foam-blog-content ol {
        line-height: 2;
        padding-left: 30px;
        margin: 20px 0;
    }
    
    .foam-blog-content li {
        margin: 12px 0;
    }
    
    .foam-blog-content ul ul,
    .foam-blog-content ol ol {
        margin: 10px 0;
    }
    
    /* Checklist */
    .foam-blog-content .checklist {
        background: white;
        border: 2px solid #e2e8f0;
        border-radius: 8px;
        padding: 25px;
        margin: 30px 0;
    }
    
    .foam-blog-content .checklist-item {
        padding: 14px;
        border-bottom: 1px solid #e2e8f0;
        display: flex;
        align-items: flex-start;
        line-height: 1.6;
    }
    
    .foam-blog-content .checklist-item:last-child {
        border-bottom: none;
    }
    
    .foam-blog-content .checklist-item:before {
        content: "✓";
        color: #48bb78;
        font-weight: bold;
        font-size: 1.5em;
        margin-right: 15px;
        flex-shrink: 0;
    }
    
    /* FAQ Section */
    .foam-blog-content .faq {
        background: #f7fafc;
        padding: 35px;
        border-radius: 8px;
        margin: 35px 0;
    }
    
    .foam-blog-content .faq-item {
        margin: 25px 0;
        padding: 22px;
        background: white;
        border-radius: 6px;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    }
    
    .foam-blog-content .faq-item:first-child {
        margin-top: 0;
    }
    
    .foam-blog-content .faq-question {
        font-weight: 600;
        color: #2c5282;
        font-size: 1.1em;
        margin-bottom: 12px;
    }
    
    .foam-blog-content .faq-answer {
        color: #4a5568;
        line-height: 1.8;
    }
    
    /* CTA Button */
    .foam-blog-content .cta-button {
        display: inline-block;
        background: #3182ce;
        color: white;
        padding: 15px 35px;
        text-decoration: none;
        border-radius: 6px;
        font-weight: 600;
        margin: 20px 0;
        transition: all 0.3s ease;
    }
    
    .foam-blog-content .cta-button:hover {
        background: #2c5282;
        color: white;
        text-decoration: none;
        transform: translateY(-2px);
    }
    
    /* Image & Video */
    .foam-blog-content .video-container {
        position: relative;
        padding-bottom: 56.25%;
        height: 0;
        overflow: hidden;
        margin: 35px 0;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }
    
    .foam-blog-content .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }
    
    .foam-blog-content .image-caption {
        text-align: center;
        font-style: italic;
        color: #718096;
        font-size: 0.9em;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    
    /* Thought Question */
    .foam-blog-content .thought-question {
        background: #fef5e7;
        border-left: 5px solid #f39c12;
        padding: 25px;
        margin: 30px 0;
        font-style: italic;
        font-size: 1.05em;
        border-radius: 4px;
    }
    
    .foam-blog-content .thought-question strong {
        font-style: normal;
        color: #c87f0a;
    }
    
    /* Price Range Box */
    .foam-blog-content .price-range {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 25px;
        border-radius: 8px;
        text-align: center;
        font-size: 1.2em;
        margin: 30px 0;
    }
    
    .foam-blog-content .price-range h4 {
        color: white;
        margin: 0;
    }
    
    /* Links */
    .foam-blog-content a {
        color: #3182ce;
        text-decoration: none;
        transition: color 0.2s ease;
    }
    
    .foam-blog-content a:hover {
        color: #2c5282;
        text-decoration: underline;
    }
    
    /* Text Styling */
    .foam-blog-content strong {
        color: #2d3748;
        font-weight: 600;
    }
    
    .foam-blog-content em {
        color: #4a5568;
    }
    
    /* Responsive Design - Mobile Optimization */
    @media screen and (max-width: 768px) {
        .foam-blog-content h1 {
            font-size: 1.6em;
            padding-bottom: 12px;
        }
        
        .foam-blog-content h2 {
            font-size: 1.4em;
            margin-top: 35px;
        }
        
        .foam-blog-content h3 {
            font-size: 1.2em;
        }
        
        .foam-blog-content .pros-cons {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        
        .foam-blog-content .intro-box,
        .foam-blog-content .inquiry-box {
            padding: 25px;
        }
        
        .foam-blog-content .inquiry-buttons {
            flex-direction: column;
            gap: 15px;
        }
        
        .foam-blog-content .inquiry-btn {
            width: 100%;
            justify-content: center;
        }
        
        .foam-blog-content .comparison-table {
            font-size: 0.85em;
        }
        
        .foam-blog-content .comparison-table th,
        .foam-blog-content .comparison-table td {
            padding: 10px 8px;
        }
        
        .foam-blog-content .highlight-box,
        .foam-blog-content .warning-box,
        .foam-blog-content .thought-question {
            padding: 20px;
        }
    }
    
    @media screen and (max-width: 480px) {
        .foam-blog-content h1 {
            font-size: 1.4em;
        }
        
        .foam-blog-content h2 {
            font-size: 1.25em;
        }
        
        .foam-blog-content .inquiry-box h3 {
            font-size: 1.4em;
        }
        
        .foam-blog-content .comparison-table {
            font-size: 0.8em;
        }
    }
