  .section-header {
            background-color: #0077c8;
            color: white;
            padding: 12px 20px;
            border-radius: 4px 4px 0 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .section-content {
            background: white;
            padding: 20px;
            border: 1px solid #e0e0e0;
            border-top: none;
            margin-bottom: 24px;
        }

        .status-check {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 20px;
        }

        .status-icon {
            color: #2e7d32;
            font-size: 24px;
        }

        .status-text {
            flex: 1;
        }

        .status-text h4 {
            color: #4caf50;
            margin-bottom: 8px;
            font-size: 16px;
            font-weight: 600;
        }

        .status-text p {
            color: #666;
            margin: 0;
            font-size: 14px;
        }

        .car-diagram {
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            padding: 20px;
            text-align: center;
            position: relative;
            margin: 20px 0;
        }

        .status-badge {
            background: #4caf50;
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            display: inline-block;
            margin-bottom: 20px;
        }

        .odometer-check {
            border: 1px solid #e0e0e0;
            border-radius: 4px;
            padding: 16px;
            margin: 12px 0;
            text-align: center;
        }

        .check-icon {
            color: #4caf50;
            font-size: 24px;
            margin-bottom: 8px;
        }

        .history-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
        }

        .history-table th,
        .history-table td {
            padding: 12px;
            border: 1px solid #e0e0e0;
            text-align: left;
        }

        .history-table th {
            background-color: #f5f5f5;
            font-weight: 600;
        }

        .year-marker {
            color: #0077c8;
            font-weight: 600;
            margin: 24px 0 12px;
        }

        .terms-section {
            font-size: 12px;
            color: #666;
            margin-top: 24px;
            padding: 20px;
            background: #f8f9fa;
            border-radius: 4px;
        }

        .download-btn {
            background: #ff3366;
            color: white;
            padding: 10px 24px;
            border-radius: 4px;
            border: none;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            margin-top: 20px;
        }

        .download-btn:hover {
            background: #e62e5c;
            color: white;
        }