/* Start custom CSS *//* Warning Box */
        .warning-box {
            background: #fff3e0;
            border-left: 4px solid #E67E22;
            padding: 20px;
            border-radius: 0 8px 8px 0;
            margin: 20px 0;
        }
        
        .warning-box .label {
            font-weight: 600;
            color: #E67E22;
            margin-bottom: 12px;
            font-size: 1.1em;
        }
        
        /* Good Box */
        .good-box {
            background: #e8f5e9;
            border-left: 4px solid #27AE60;
            padding: 20px;
            border-radius: 0 8px 8px 0;
            margin: 20px 0;
        }
        
        .good-box .label {
            font-weight: 600;
            color: #27AE60;
            margin-bottom: 12px;
            font-size: 1.1em;
        }
        
        /* Lists */
        ul.styled-list {
            list-style: none;
            padding: 0;
            margin: 15px 0;
        }
        
        ul.styled-list li {
            padding: 10px 15px 10px 40px;
            margin-bottom: 8px;
            background: #f8f9fa;
            border-radius: 6px;
            position: relative;
        }
        
        ul.styled-list li::before {
            content: "•";
            position: absolute;
            left: 18px;
            color: #2C5F7C;
            font-weight: bold;
        }
        
        ul.styled-list.warning li::before {
            content: "⚠";
            color: #E67E22;
        }
        
        ul.styled-list.check li::before {
            content: "✓";
            color: #27AE60;
        }
        
        ol.numbered-list {
            padding-left: 20px;
            margin: 20px 0;
        }
        
        ol.numbered-list li {
            padding: 12px 15px;
            margin-bottom: 10px;
            background: #f8f9fa;
            border-radius: 6px;
        }
        
        ol.numbered-list li strong {
            color: #2C5F7C;
        }
        
        /* Rating Table */
        .rating-table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            border-radius: 8px;
            overflow: hidden;
        }
        
        .rating-table th {
            background: #2C5F7C;
            color: #fff;
            padding: 15px;
            text-align: left;
            font-weight: 600;
        }
        
        .rating-table th:nth-child(2) {
            text-align: center;
        }
        
        .rating-table td {
            padding: 12px 15px;
            border-bottom: 1px solid #e0e0e0;
        }
        
        .rating-table tr:nth-child(even) {
            background: #f8f9fa;
        }
        
        .rating-table td:first-child {
            font-weight: 600;
        }
        
        .rating-table td:nth-child(2) {
            text-align: center;
        }
        
        .stars {
            color: #F1C40F;
            font-size: 1.2em;
        }
        
        .warning-icon {
            font-size: 1.3em;
        }
        
        /* Fazit */
        .fazit {
            background: linear-gradient(135deg, #2C5F7C 0%, #3A7A9C 100%);
            color: #fff;
            padding: 30px;
            border-radius: 12px;
            margin: 40px 0;
        }
        
        .fazit h2 {
            color: #fff;
            border-bottom-color: rgba(255,255,255,0.3);
            margin-top: 0;
        }
        
        .fazit p {
            color: #e8f4f8;
        }
        
        .signature {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #e0e0e0;
        }
        
        .signature .greeting {
            font-weight: bold;
            color: #2C5F7C;
            font-size: 1.2em;
        }
        
        .signature .name {
            font-style: italic;
            color: #666;
        }
        
        .cta-box {
            background: #f0f4f7;
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            margin: 30px 0;
            font-style: italic;
            color: #555;
        }/* End custom CSS */