.report-container {
            max-width: 900px;
            margin: 0 auto;
            background-color: white;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            overflow: hidden;
        }
        
        .report-header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 40px 30px;
            text-align: center;
        }
        
        .report-header h1 {
            font-size: 28px;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .report-header .date {
            font-size: 14px;
            opacity: 0.9;
        }
        
        .report-body {
            padding: 40px 30px;
        }
        
        .section {
            margin-bottom: 35px;
            padding-bottom: 35px;
            border-bottom: 1px solid #e0e0e0;
        }
        
        .section:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        
        .section-title {
            font-size: 22px;
            font-weight: 600;
            color: #667eea;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #667eea;
        }
        
        .section-content {
            font-size: 15px;
            color: #555;
            line-height: 1.8;
        }

                
        .section-text {
            font-size: 15px;
            color: #555;
            line-height: 1.8;
            padding: 15px;
        }

        
        .section-content ol,
        .section-content ul {
            margin-left: 20px;
            margin-top: 10px;
        }
        
        .section-content li {
            margin-bottom: 10px;
        }
        
        .report-footer {
            background-color: #f8f9fa;
            padding: 20px 30px;
            text-align: center;
            font-size: 13px;
            color: #777;
            border-top: 1px solid #e0e0e0;
        }