/* Imports the 'Inter' font from Google for a clean, modern look */
    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
    
    /* Main container for the warranty page */
    .wz-warranty-page {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        background-color: #f9fafb; /* A very light, clean gray */
        color: #374151;
        line-height: 1.7;
        width: 100%;
        padding: 50px;
        box-sizing: border-box;
        /* * The following 'user-select' properties have been removed to allow text copying:
         * -webkit-user-select: none;
         * -ms-user-select: none;
         * user-select: none;
        */
    }
    
    /* Wrapper to constrain content width for readability */
    .wz-warranty-content {
        max-width: 1200px;
        margin: 0 auto;
    }
    
    /* Main page title */
    .wz-warranty-page h1 {
        font-size: 42px;
        font-weight: 700;
        color: #111827;
        text-align: center;
        margin-top: 0;
        margin-bottom: 20px;
    }
    
    .wz-warranty-intro-text {
        text-align: center;
        font-size: 18px;
        color: #6b7280;
        max-width: 800px;
        margin: 0 auto 60px auto;
    }
    
    /* Grid layout for the cards */
    .wz-warranty-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
    }
    
    /* New container for top cards to handle 50/50 split */
    .wz-top-cards-container {
        grid-column: 1 / -1; /* Span full width of the main grid */
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
    }
    
    /* Individual policy card styling */
    .wz-warranty-card {
        background-color: #ffffff;
        border: 1px solid #e5e7eb;
        border-radius: 16px;
        padding: 30px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
    }
    
    .wz-warranty-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    }
    
    .wz-card-header {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    }
    
    .wz-card-icon {
        border-radius: 12px;
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 20px;
        flex-shrink: 0;
    }
    
    /* Default Icon Style */
    .wz-card-icon.default {
        background-color: #e0e7ff;
        color: #4338ca;
    }

    /* Replacement Icon Style */
    .wz-card-icon.replacement {
        background-color: #e0f2fe;
        color: #0369a1;
    }
    
    /* Exclusions Icon Style */
    .wz-card-icon.exclusions {
        background-color: #fff1f2;
        color: #be123c;
    }
    
    /* Responsibilities Icon Style */
    .wz-card-icon.responsibilities {
        background-color: #f0fdf4;
        color: #16a34a;
    }
    
    /* Accessories Icon Style */
    .wz-card-icon.accessories {
        background-color: #fef3c7;
        color: #b45309;
    }
    
    .wz-card-header h2 {
        font-size: 22px;
        font-weight: 600;
        color: #111827;
        margin: 0;
    }
    
    .wz-card-body p, .wz-card-body ul {
        font-size: 15px;
        color: #4b5563;
        margin-bottom: 1em;
    }

    .wz-card-body h3 {
        font-size: 18px;
        font-weight: 600;
        color: #1f2937;
        margin-top: 20px;
        margin-bottom: 10px;
    }
    
    .wz-card-body ul {
        padding-left: 20px;
    }
    
    .wz-card-body a {
        color: #4f46e5;
        font-weight: 500;
        text-decoration: none;
    }
    
    .wz-card-body a:hover {
        text-decoration: underline;
    }
    
    .wz-card-body strong {
        color: #111827;
    }
    
    /* Special style for the main exclusions card */
    .wz-card-exclusions {
        grid-column: 1 / -1; /* Make this card span the full width */
        border-color: #fecaca;
    }
    
    /* Final Notes Card */
    .wz-final-note-card {
        grid-column: 1 / -1;
        background: #1f2937;
        color: #d1d5db;
        text-align: center;
        border-radius: 10px;
    }
    
    .wz-final-note-card p {
        color: #d1d5db;
        font-size: 16px;
        margin: 0;
        padding: 10px;
    }
    
    /* --- Responsive Design --- */
    @media (max-width: 768px) {
        .wz-warranty-page {
            padding: 30px 20px;
        }
        .wz-warranty-page h1 {
            font-size: 32px;
        }
        .wz-warranty-intro-text {
            font-size: 16px;
            margin-bottom: 40px;
        }
    }
    
    /* New grid for the 2-column cards */
    .wz-two-column-cards {
        grid-column: 1 / -1; /* span full width */
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
    }
    
    /* Force 2 columns on desktop for specific cards */
    @media (min-width: 700px) {
        .wz-two-column-cards {
            /* This is now handled by the auto-fit, but we can be explicit if needed */
            /* grid-template-columns: repeat(2, 1fr); */
        }
    }

    /* Special highlighted note box */
    .wz-special-note-v2 {
        background-color: #fefce8;
        border-left: 4px solid #facc15;
        padding: 15px 20px;
        margin: 20px 0;
        border-radius: 0 8px 8px 0;
        font-size: 14px;
    }

    /* --- Styles for Spare Parts Table (Copied) --- */
    .wz-spare-parts-selector {
        margin-bottom: 25px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .wz-spare-parts-selector label {
        font-size: 14px;
        font-weight: 500;
        color: #374151;
        margin-bottom: 8px;
    }

    .wz-spare-parts-selector select {
        width: 100%;
        max-width: 400px;
        padding: 10px 12px;
        font-family: 'Inter', sans-serif;
        font-size: 15px;
        border: 1px solid #d1d5db;
        border-radius: 8px;
        background-color: #ffffff;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20width%3D'16'%20height%3D'16'%20viewBox%3D'0%200%2024%2024'%20fill%3D'none'%20stroke%3D'%236b7280'%20stroke-width%3D'2'%20stroke-linecap%3D'round'%20stroke-linejoin%3D'round'%3E%3Cpolyline%20points%3D'6%209%2012%2015%2018%209'%3E%3C%2Fpolyline%3E%3C%2Fsvg%3E");
        background-repeat: no-repeat;
        background-position: right 12px center;
        cursor: pointer;
    }

    .wz-spare-parts-table {
        width: 100%;
        border-collapse: collapse;
        margin-top: 10px;
    }

    .wz-spare-parts-table th, .wz-spare-parts-table td {
        padding: 12px 15px;
        text-align: left;
        border-bottom: 1px solid #e5e7eb;
    }

    .wz-spare-parts-table th {
        background-color: #f9fafb;
        font-size: 14px;
        font-weight: 600;
        color: #4b5563;
        text-transform: uppercase;
    }

    .wz-spare-parts-table td {
        font-size: 15px;
        color: #374151;
    }

    .wz-spare-parts-table tbody tr:last-child td {
        border-bottom: 0;
    }

    .wz-spare-parts-table td:last-child {
        font-weight: 500;
        color: #111827;
    }