        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
            background: #ffffff;
            color: #1a1a2e;
            line-height: 1.5;
            padding: 40px 50px;
        }

        /* Для печати в PDF */
        @media print {
            body {
                padding: 20px;
                margin: 0;
            }
            .page-break {
                page-break-before: always;
            }
            .no-break {
                page-break-inside: avoid;
            }
        }

        h1 {
            font-size: 32px;
            margin-bottom: 8px;
            color: #0a1628;
            border-left: 5px solid #00c853;
            padding-left: 20px;
        }

        .subtitle {
            color: #5a6e8a;
            font-size: 16px;
            margin-bottom: 40px;
            margin-top: 8px;
            padding-left: 25px;
        }

        h2 {
            font-size: 22px;
            margin-top: 30px;
            margin-bottom: 16px;
            color: #0a1628;
            border-bottom: 2px solid #e0e4e8;
            padding-bottom: 6px;
        }

        h3 {
            font-size: 18px;
            margin-top: 20px;
            margin-bottom: 12px;
            color: #1e2a44;
        }

        .highlight-box {
            background: #f0f6ff;
            border-left: 5px solid #00c853;
            padding: 20px 25px;
            margin: 25px 0;
            border-radius: 8px;
        }

        .price-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }

        .price-table th, .price-table td {
            border: 1px solid #d0d7de;
            padding: 12px 15px;
            text-align: left;
            vertical-align: top;
        }

        .price-table th {
            background: #f6f8fa;
            font-weight: 600;
            color: #0a1628;
        }

        .price-table tr td:first-child {
            font-weight: 600;
            width: 30%;
        }

        .total-row {
            background: #e8f5e9;
            font-weight: 700;
        }

        .badge {
            display: inline-block;
            background: #00c853;
            color: white;
            font-size: 12px;
            padding: 2px 8px;
            border-radius: 20px;
            font-weight: 600;
            margin-left: 10px;
        }

        .footnote {
            font-size: 13px;
            color: #6c7a91;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #e0e4e8;
        }

        ul {
            margin-left: 25px;
            margin-bottom: 15px;
        }

        li {
            margin: 8px 0;
        }

        .page-break {
            page-break-before: always;
        }
