
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .header {
            text-align: center;
            color: white;
            margin-bottom: 2rem;
        }
        
        .header h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .header p {
            font-size: 1.2rem;
            opacity: 0.9;
        }
        
        .content-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        .card:hover {
            transform: translateY(-5px);
        }
        
        .card h2 {
            color: #667eea;
            margin-bottom: 1rem;
            font-size: 1.8rem;
        }
        
        .card h3 {
            color: #764ba2;
            margin: 1.5rem 0 1rem 0;
            font-size: 1.3rem;
        }
        
        .framework {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            color: white;
        }
        
        .framework h2 {
            color: white;
        }
        
        .framework-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1rem;
            margin-top: 1rem;
        }
        
        .step {
            background: rgba(255,255,255,0.1);
            padding: 1rem;
            border-radius: 10px;
            backdrop-filter: blur(10px);
        }
        
        .step h4 {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }
        
        .questions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 1.5rem;
            margin-top: 1rem;
        }
        
        .question-card {
            background: #f8f9ff;
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 4px solid #667eea;
        }
        
        .question {
            font-weight: bold;
            color: #333;
            margin-bottom: 1rem;
        }
        
        .answer {
            color: #555;
            line-height: 1.6;
        }
        
        .harmony-elements-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1rem;
            margin-top: 1rem;
        }
        
        .harmony-element {
            background: #f0fff4;
            padding: 1.5rem;
            border-radius: 10px;
            border: 1px solid #9ae6b4;
        }
        
        .harmony-element h4 {
            color: #2f855a;
            margin-bottom: 1rem;
        }
        
        .strategies-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin-top: 1rem;
        }
        
        .strategy {
            background: #ebf8ff;
            padding: 1rem;
            border-radius: 10px;
            border-left: 4px solid #4299e1;
        }
        
        .strategy h4 {
            color: #2b6cb0;
            margin-bottom: 0.5rem;
        }
        
        .initiatives-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 1.5rem;
            margin-top: 1rem;
        }
        
        .initiative {
            background: #fffaf0;
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 4px solid #ed8936;
        }
        
        .initiative h4 {
            color: #c05621;
            margin-bottom: 1rem;
        }
        
        .indicators-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin-top: 1rem;
        }
        
        .indicator {
            background: #faf5ff;
            padding: 1rem;
            border-radius: 10px;
            border-left: 4px solid #9f7aea;
        }
        
        .indicator h4 {
            color: #6b46c1;
            margin-bottom: 0.5rem;
        }
        
        .checklist {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin-top: 1rem;
        }
        
        .checklist-item {
            display: flex;
            align-items: center;
            padding: 0.5rem;
            background: #f0fff4;
            border-radius: 5px;
            border: 1px solid #9ae6b4;
        }
        
        .checklist-item::before {
            content: "✓";
            color: #38a169;
            font-weight: bold;
            margin-right: 0.5rem;
        }
        
        .tips-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1rem;
            margin-top: 1rem;
        }
        
        .tip {
            background: #e6fffa;
            padding: 1rem;
            border-radius: 10px;
            border-left: 4px solid #319795;
        }
        
        .tip h4 {
            color: #2c7a7b;
            margin-bottom: 0.5rem;
        }
        
        .cta {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            color: white;
            text-align: center;
            padding: 3rem 2rem;
            border-radius: 15px;
            margin-top: 2rem;
        }
        
        .cta h2 {
            margin-bottom: 1rem;
            color: white;
        }
        
        .cta-button {
            display: inline-block;
            background: white;
            color: #4facfe;
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            margin-top: 1rem;
            transition: transform 0.3s ease;
        }
        
        .cta-button:hover {
            transform: scale(1.05);
        }
        
        @media (max-width: 768px) {
            .header h1 {
                font-size: 2rem;
            }
            
            .framework-steps,
            .questions-grid,
            .harmony-elements-grid {
                grid-template-columns: 1fr;
            }
        }
    
