
        /* Base Styles */
        .embedded-blog {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        /* Red Color Theme */
        :root {
            --primary-red: #e53935;
            --dark-red: #b71c1c;
            --light-red: #ffcdd2;
            --accent-red: #ff5252;
        }
        
        /* Section Headers */
        .section-header {
            color: var(--dark-red);
            border-bottom: 2px solid var(--primary-red);
            padding-bottom: 10px;
            margin-top: 40px;
            margin-bottom: 25px;
        }
        
        /* Cards */
        .card {
            background: white;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            padding: 25px;
            margin-bottom: 25px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-top: 4px solid var(--primary-red);
        }
        
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.12);
        }
        
        /* CTA Buttons */
        .cta-button {
            display: inline-block;
            background: var(--primary-red);
            color: white;
            padding: 12px 25px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            margin: 10px 5px;
            text-align: center;
            border: none;
            cursor: pointer;
        }
        
        .cta-button:hover {
            background: var(--dark-red);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        
        .cta-button.secondary {
            background: white;
            color: var(--primary-red);
            border: 2px solid var(--primary-red);
        }
        
        .cta-button.secondary:hover {
            background: var(--light-red);
        }
        
        /* Grid Layouts */
        .grid-2 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }
        
        .grid-3 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        
        /* Feature List */
        .feature-list {
            list-style: none;
            padding: 0;
        }
        
        .feature-list li {
            padding: 8px 0;
            padding-left: 30px;
            position: relative;
        }
        
        .feature-list li:before {
            content: "✓";
            color: var(--primary-red);
            font-weight: bold;
            position: absolute;
            left: 0;
        }
        
        /* Highlight Box */
        .highlight-box {
            background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
            color: white;
            padding: 30px;
            border-radius: 10px;
            margin: 40px 0;
            text-align: center;
        }
        
        /* Interactive Quiz */
        .quiz-container {
            background: white;
            border: 2px dashed var(--primary-red);
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
            text-align: center;
        }
        
        /* Resource Links */
        .resource-links {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-top: 30px;
        }
        
        .resource-link {
            flex: 1;
            min-width: 200px;
            margin: 10px;
            padding: 15px;
            background: var(--light-red);
            border-radius: 5px;
            text-align: center;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .grid-2, .grid-3 {
                grid-template-columns: 1fr;
            }
            
            .resource-links {
                flex-direction: column;
            }
        }
    