 /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #20808D;
            --primary-dark: #18646E;
            --secondary-color: #2C3E50;
            --accent-color: #E74C3C;
            --success-color: #28A745;
            --warning-color: #FFC107;
            --light-gray: #F8F9FA;
            --medium-gray: #E9ECEF;
            --dark-gray: #6C757D;
            --text-color: #333333;
            --border-color: #DEE2E6;
            --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
            --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
            --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
            --border-radius: 8px;
            --transition: all 0.3s ease;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: #fff;
            font-size: 16px;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        .header {
            background-color: white;
            box-shadow: var(--shadow-sm);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            transition: var(--transition);
        }

        .header.scrolled {
            box-shadow: var(--shadow-md);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }

        .logo-link {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .logo {
            height: 40px;
            width: auto;
        }

        /* Navigation */
        .nav {
            display: flex;
            align-items: center;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--secondary-color);
            font-weight: 500;
            font-size: 15px;
            transition: var(--transition);
            padding: 5px 0;
            position: relative;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--primary-color);
        }

        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            right: 0;
            height: 2px;
            background-color: var(--primary-color);
            border-radius: 1px;
        }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            color: var(--secondary-color);
        }

        .mobile-menu-toggle svg {
            width: 24px;
            height: 24px;
        }

        /* Hero Section */
        .warranty-hero {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
            color: white;
            padding: 140px 0 80px;
            margin-top: 70px;
            text-align: center;
        }

        .warranty-hero h1 {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .warranty-hero p {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Main Content */
        .warranty-main {
            padding: 80px 0;
            background-color: var(--light-gray);
        }

        .warranty-container {
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-sm);
            padding: 50px;
            margin-top: -40px;
            position: relative;
        }

        /* Warranty Badge */
        .warranty-badge {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
            color: white;
            padding: 25px;
            border-radius: var(--border-radius);
            margin-bottom: 40px;
            text-align: center;
            border: 3px solid rgba(255, 255, 255, 0.2);
        }

        .warranty-badge h2 {
            font-size: 2rem;
            margin-bottom: 10px;
        }

        .warranty-badge p {
            font-size: 1.1rem;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Coverage Summary */
        .coverage-summary {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-bottom: 50px;
        }

        .coverage-card {
            background: var(--light-gray);
            border-radius: var(--border-radius);
            padding: 25px;
            text-align: center;
            transition: var(--transition);
            border: 2px solid transparent;
        }

        .coverage-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary-color);
            box-shadow: var(--shadow-lg);
        }

        .coverage-icon {
            width: 60px;
            height: 60px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .coverage-icon svg {
            width: 30px;
            height: 30px;
            color: white;
        }

        .coverage-card h3 {
            color: var(--secondary-color);
            margin-bottom: 15px;
            font-size: 1.3rem;
        }

        .coverage-duration {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        /* Warranty Sections */
        .warranty-section {
            margin-bottom: 50px;
            scroll-margin-top: 100px;
        }

        .warranty-section h2 {
            color: var(--secondary-color);
            font-size: 1.8rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--medium-gray);
        }

        .warranty-section h3 {
            color: var(--secondary-color);
            font-size: 1.4rem;
            margin: 25px 0 15px;
        }

        .warranty-section p {
            margin-bottom: 15px;
            color: var(--text-color);
        }

        .warranty-section ul,
        .warranty-section ol {
            margin-bottom: 20px;
            padding-left: 25px;
        }

        .warranty-section li {
            margin-bottom: 10px;
            padding-left: 5px;
        }

        /* Coverage Boxes */
        .coverage-box {
            background-color: var(--light-gray);
            border-left: 4px solid var(--primary-color);
            padding: 25px;
            margin: 25px 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }

        .coverage-box.covered {
            border-left-color: var(--success-color);
            background-color: rgba(40, 167, 69, 0.1);
        }

        .coverage-box.not-covered {
            border-left-color: var(--accent-color);
            background-color: rgba(231, 76, 60, 0.1);
        }

        .coverage-box.important {
            border-left-color: var(--warning-color);
            background-color: rgba(255, 193, 7, 0.1);
        }

        /* Comparison Table */
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            font-size: 0.95rem;
            box-shadow: var(--shadow-sm);
        }

        .comparison-table th,
        .comparison-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid var(--border-color);
        }

        .comparison-table th {
            background-color: var(--light-gray);
            font-weight: 600;
            color: var(--secondary-color);
        }

        .comparison-table tr:hover {
            background-color: var(--light-gray);
        }

        .coverage-yes {
            color: var(--success-color);
            font-weight: 600;
        }

        .coverage-no {
            color: var(--accent-color);
            font-weight: 600;
        }

        /* Warranty Process */
        .process-flow {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin: 30px 0;
        }

        .process-step {
            flex: 1;
            min-width: 200px;
            max-width: 300px;
            text-align: center;
            padding: 20px;
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-sm);
            border-top: 4px solid var(--primary-color);
            position: relative;
        }

        .process-step::after {
            content: '→';
            position: absolute;
            right: -25px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--primary-color);
            font-size: 1.5rem;
            font-weight: bold;
        }

        .process-step:last-child::after {
            display: none;
        }

        .step-number {
            width: 40px;
            height: 40px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            margin: 0 auto 15px;
        }

        /* Duration Table */
        .duration-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
        }

        .duration-table th,
        .duration-table td {
            padding: 15px;
            border: 1px solid var(--border-color);
            text-align: center;
        }

        .duration-table th {
            background-color: var(--primary-color);
            color: white;
            font-weight: 600;
        }

        .duration-table tr:nth-child(even) {
            background-color: var(--light-gray);
        }

        /* Contact Section */
        .contact-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: var(--border-radius);
            padding: 40px;
            margin-top: 60px;
            text-align: center;
        }

        .contact-section h3 {
            color: var(--secondary-color);
            margin-bottom: 20px;
            font-size: 1.6rem;
        }

        .contact-section p {
            color: var(--dark-gray);
            max-width: 700px;
            margin: 0 auto 30px;
        }

        .contact-info {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            margin-top: 30px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--primary-color);
            font-weight: 500;
        }

        .contact-item svg {
            width: 20px;
            height: 20px;
        }

        /* Warranty Registration */
        .registration-section {
            background: linear-gradient(135deg, var(--light-gray) 0%, var(--medium-gray) 100%);
            border-radius: var(--border-radius);
            padding: 40px;
            margin: 40px 0;
            text-align: center;
        }

        .registration-section h3 {
            color: var(--secondary-color);
            margin-bottom: 20px;
            font-size: 1.6rem;
        }

        .registration-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }

        .feature-item {
            text-align: center;
            padding: 20px;
        }

        .feature-item svg {
            width: 40px;
            height: 40px;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        /* Footer Styles */
       /* Footer */
.tv-footer {
    background-color: #13343b;
    color: rgba(255, 255, 255, 0.9);
    padding: 32px 16px;
    margin-bottom: 0;
}

.tv-footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

.tv-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.tv-footer-section h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
    line-height: 1.2;
}

.tv-footer-logo {
    font-size: 30px;
    font-weight: 600;
    color: #32b8c6;
    margin-bottom: 16px;
}

.tv-footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 16px;
}

.tv-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tv-footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.15s cubic-bezier(0.16, 1, 0.3, 1);
}

.tv-footer-links a:hover {
    color: #32b8c6;
}

.tv-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tv-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tv-contact-item svg {
    width: 20px;
    height: 20px;
    stroke: #32b8c6;
    flex-shrink: 0;
}

.tv-contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.15s cubic-bezier(0.16, 1, 0.3, 1);
}

.tv-contact-item a:hover {
    color: #32b8c6;
}

.tv-footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.tv-footer-bottom a {
    color: #32b8c6;
    text-decoration: underline;
}

        /* Mobile Bottom Navigation */
        .mobile-bottom-nav {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: white;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
            z-index: 1000;
        }

        .mobile-nav-container {
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
        }

        .mobile-nav-link {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: var(--dark-gray);
            font-size: 0.8rem;
            padding: 8px;
            transition: var(--transition);
        }

        .mobile-nav-link svg {
            width: 22px;
            height: 22px;
            margin-bottom: 4px;
        }

        .mobile-nav-link.active {
            color: var(--primary-color);
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .warranty-hero h1 {
                font-size: 2.4rem;
            }
            
            .warranty-container {
                padding: 30px;
            }
            
            .process-flow {
                flex-direction: column;
                align-items: center;
            }
            
            .process-step::after {
                right: 50%;
                bottom: -25px;
                top: auto;
                transform: translateX(50%) rotate(90deg);
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .mobile-menu-toggle {
                display: block;
            }
            
            .nav.active .nav-links {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: white;
                padding: 20px;
                box-shadow: var(--shadow-md);
                gap: 20px;
            }
            
            .warranty-hero {
                padding: 120px 0 60px;
            }
            
            .warranty-hero h1 {
                font-size: 2rem;
            }
            
            .mobile-bottom-nav {
                display: block;
            }
            
            .warranty-main {
                padding-bottom: 120px;
            }
            
            .coverage-summary {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .warranty-hero h1 {
                font-size: 1.8rem;
            }
            
            .warranty-hero p {
                font-size: 1rem;
            }
            
            .warranty-container {
                padding: 20px;
            }
            
            .contact-section {
                padding: 30px 20px;
            }
            
            .contact-info {
                flex-direction: column;
                align-items: center;
                gap: 20px;
            }
            
            .registration-features {
                grid-template-columns: 1fr;
            }
        }

        /* Print Styles */
        @media print {
            .header,
            .tv-footer,
            .mobile-bottom-nav,
            .contact-section,
            .registration-section {
                display: none !important;
            }
            
            .warranty-hero {
                padding: 20px 0;
                margin-top: 0;
                background: none;
                color: black;
            }
            
            .warranty-main {
                padding: 0;
                background: none;
            }
            
            .warranty-container {
                box-shadow: none;
                padding: 0;
                margin: 0;
            }
            
            body {
                font-size: 12pt;
                line-height: 1.4;
            }
        }