﻿        .warranty-container {
            max-width: 900px;
            margin: 60px auto 40px;
            padding: 0 20px;
        }

        .page-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .page-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 12px;
        }

        .page-subtitle {
            font-size: 1.1rem;
            color: #6b7280;
        }

        .content-section {
            background: white;
            border-radius: 8px;
            padding: 30px;
            margin-bottom: 30px;
            border-left: 4px solid #3b82f6;
        }

        .section-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 20px;
        }

        .content-section ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .content-section li {
            display: flex;
            gap: 12px;
            padding: 12px 0;
            color: #4b5563;
            line-height: 1.6;
        }

        .content-section li:before {
            content: '✓';
            color: #10b981;
            font-weight: bold;
            min-width: 20px;
            flex-shrink: 0;
        }

        .table-responsive {
            overflow-x: auto;
            margin: 20px 0;
        }

        .warranty-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }

        .warranty-table th {
            background: #f3f4f6;
            padding: 12px;
            text-align: left;
            font-weight: 700;
            color: #1f2937;
            border-bottom: 2px solid #3b82f6;
        }

        .warranty-table td {
            padding: 12px;
            border-bottom: 1px solid #e5e7eb;
            color: #4b5563;
        }

        .warranty-table tr:hover {
            background: #f9fafb;
        }

        .highlight-box {
            background: #dbeafe;
            border-left: 4px solid #3b82f6;
            padding: 16px;
            border-radius: 4px;
            margin: 20px 0;
        }

        .highlight-box strong {
            color: #0c4a6e;
        }

        @media (max-width: 768px) {
            .warranty-container {
                margin-top: 40px;
            }

            .page-title {
                font-size: 1.8rem;
            }

            .content-section {
                padding: 20px;
            }

            .warranty-table {
                font-size: 0.9rem;
            }

            .warranty-table th,
            .warranty-table td {
                padding: 10px;
            }
        }
