/* All existing CSS from index.html remains the same */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        :root {
            --primary: #27ae60;      /* Natural green */
            --secondary: #2c3e50;    /* Keep dark blue */
            --accent: #e67e22;       /* Warm accent */
            --pet-primary: #27ae60;
            --pet-secondary: #219653;
            --deal-color: #e74c3c;
            --bestseller-color: #f39c12;
            --light: #ecf0f1;
            --dark: #171a1d;
            --success: #27ae60;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        body {
            background-color: #f9f9f9;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header Styles */
        header {
            background: #1a252f;
            color: white;
            padding: 1rem 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo img {
            width: 40px;
            height: 40px;
            object-fit: contain;
            border-radius: 5px;
            transition: transform 0.3s ease;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: white;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .logo:hover {
            transform: scale(1.05);
        }
        
        .logo:hover i {
            transform: rotate(15deg);
            color: var(--primary);
        }
        
        .logo i {
            font-size: 2rem;
            color: white;
            transition: all 0.3s ease;
        }
        
        .logo h1 {
            font-size: 1.5rem;
            font-weight: 700;
            text-align: center;
        }
        
        .logo span {
            color: var(--primary);
        }
        
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        nav a:hover {
            color: var(--primary);
        }
        
        .mobile-menu {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1477884213360-7e9d7dcc1e48?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 5rem 0;
            text-align: center;
        }
        
        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            text-align: center;
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 2rem;
        }
        
        .btn {
            display: inline-block;
            background-color: var(--pet-primary);
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            text-align: center;
        }
        
        .btn:hover {
            background-color: var(--pet-secondary);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        /* Section Headers */
        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding-bottom: 10px;
            border-bottom: 2px solid #eee;
            width: 100%;
            max-width: 1200px;
        }
        
        .section-title {
            font-size: 1.8rem;
            color: var(--secondary);
            display: flex;
            align-items: center;
            gap: 10px;
            text-align: center;
        }
        
        .section-title i {
            color: var(--pet-primary);
        }
        
        .view-all {
            color: var(--pet-primary);
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: all 0.3s;
        }
        
        .view-all:hover {
            gap: 10px;
        }
        
        /* Policy Page Specific Styles */
        .policy-section {
            padding: 4rem 0;
        }
        
        .policy-content {
            background: white;
            border-radius: 10px;
            padding: 3rem;
            box-shadow: var(--shadow);
            margin-bottom: 3rem;
        }
        
        .policy-intro {
            margin-bottom: 2.5rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid #eee;
        }
        
        .policy-intro h2 {
            font-size: 1.8rem;
            color: var(--secondary);
            margin-bottom: 1rem;
        }
        
        .policy-intro p {
            font-size: 1.1rem;
            color: #555;
            line-height: 1.7;
        }
        
        .policy-disclaimer {
            background-color: #fff8e1;
            border-left: 4px solid #ffc107;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 5px;
        }
        
        .policy-disclaimer h3 {
            color: var(--secondary);
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .policy-disclaimer h3 i {
            color: #ffc107;
        }
        
        .policy-section-item {
            margin-bottom: 2.5rem;
        }
        
        .policy-section-item h3 {
            font-size: 1.5rem;
            color: var(--secondary);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .policy-section-item h3 i {
            color: var(--pet-primary);
        }
        
        .policy-section-item p {
            margin-bottom: 1rem;
            color: #555;
            line-height: 1.7;
        }
        
        .policy-section-item ul {
            margin-left: 1.5rem;
            margin-bottom: 1.5rem;
        }
        
        .policy-section-item li {
            margin-bottom: 0.8rem;
            color: #555;
            line-height: 1.6;
        }
        
        .policy-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }
        
        .policy-table th {
            background-color: #f8f9fa;
            padding: 12px 15px;
            text-align: left;
            font-weight: 600;
            color: var(--secondary);
            border-bottom: 2px solid #e9ecef;
        }
        
        .policy-table td {
            padding: 12px 15px;
            border-bottom: 1px solid #e9ecef;
            color: #555;
        }
        
        .policy-table tr:hover {
            background-color: #f8f9fa;
        }
        
        .retailer-returns {
            background-color: #f8f9fa;
            padding: 2rem;
            border-radius: 8px;
            margin: 2rem 0;
        }
        
        .retailer-returns h4 {
            color: var(--secondary);
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }
        
        .retailer-returns ul {
            margin-left: 1.5rem;
        }
        
        .retailer-returns li {
            margin-bottom: 0.5rem;
            color: #555;
        }
        
        /* Important Notes Section */
        .important-notes {
            background-color: #e8f4fd;
            border-left: 4px solid var(--accent);
            padding: 2rem;
            border-radius: 8px;
            margin: 2rem 0;
        }
        
        .important-notes h3 {
            color: var(--secondary);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .important-notes h3 i {
            color: var(--accent);
        }
        
        .important-notes ul {
            margin-left: 1.5rem;
        }
        
        .important-notes li {
            margin-bottom: 0.8rem;
            color: #555;
            line-height: 1.6;
        }
        
        /* Process Steps */
        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        
        .process-step {
            background: white;
            border-radius: 8px;
            padding: 1.5rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            text-align: center;
            position: relative;
        }
        
        .step-number {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 40px;
            background-color: var(--pet-primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        .step-icon {
            font-size: 2.5rem;
            color: var(--pet-primary);
            margin: 1rem 0 1rem;
        }
        
        .process-step h4 {
            color: var(--secondary);
            margin-bottom: 0.8rem;
            font-size: 1.2rem;
        }
        
        .process-step p {
            color: #555;
            font-size: 0.9rem;
            line-height: 1.5;
        }

        a {
            color: #27ae60;
            text-decoration: none;
            transition: color 0.3s;
        }
                    
        /* FAQ Section */
        .faq-section {
            padding: 4rem 0;
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: white;
            border-radius: 8px;
            margin-bottom: 15px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            overflow: hidden;
            transition: all 0.3s;
        }
        
        .faq-item:hover {
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .faq-question {
            padding: 20px 25px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--secondary);
            transition: all 0.3s;
        }
        
        .faq-question:hover {
            background-color: #f8f9fa;
        }
        
        .faq-question i {
            transition: transform 0.3s;
        }
        
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            color: #555;
            line-height: 1.6;
        }
        
        .faq-item.active .faq-answer {
            padding: 0 25px 25px;
            max-height: 1000px;
        }
        
        /* NEW: Scroll to top button */
        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--pet-primary);
            color: white;
            border: none;
            cursor: pointer;
            display: none;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            box-shadow: var(--shadow);
            transition: all 0.3s;
            z-index: 1000;
        }
        
        .scroll-to-top:hover {
            background-color: var(--pet-secondary);
            transform: translateY(-3px);
        }
        
        /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 3rem 0 1rem;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 2rem;
        }
        
        .footer-column h3 {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 10px;
            text-align: center;
        }
        
        .footer-column h3:after {
            content: '';
            position: absolute;
            width: 40px;
            height: 2px;
            background-color: var(--pet-primary);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
            text-align: center;
        }
        
        .footer-column a {
            color: #bbb;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column a:hover {
            color: var(--pet-primary);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
            justify-content: center;
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transition: all 0.3s;
        }
        
        .social-links a:hover {
            background-color: white;
            transform: translateY(-5px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #bbb;
            font-size: 0.9rem;
        }
        
        /* ========== TABLET RESPONSIVE DESIGN ========== */
        /* Tablet (768px to 992px) */
        @media (min-width: 768px) and (max-width: 992px) {
            /* Header adjustments */
            .header-content {
                padding: 0 10px;
            }
            
            nav ul {
                gap: 1rem;
                padding: 0 10px;
            }
            
            nav a {
                font-size: 0.85rem;
                gap: 3px;
            }
            
            .logo h1 {
                font-size: 1.2rem;
            }
            
            /* Hero section */
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero p {
                font-size: 1.1rem;
                padding: 0 20px;
            }
            
            /* Policy content */
            .policy-content {
                padding: 2rem;
            }
            
            .process-steps {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .policy-table {
                display: block;
                overflow-x: auto;
                white-space: nowrap;
            }
        }
        
        /* ========== EXISTING RESPONSIVE DESIGN ========== */
        /* Mobile devices */
        @media (max-width: 768px) {
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: #1a252f;
                padding: 1rem;
                box-shadow: var(--shadow);
                z-index: 100;
                gap: 1.2rem;
            }
            
            nav ul.show {
                display: flex;
            }
            
            .mobile-menu {
                display: block;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            /* Policy page mobile adjustments */
            .policy-content {
                padding: 1.5rem;
            }
            
            .policy-table {
                display: block;
                overflow-x: auto;
                white-space: nowrap;
            }
            
            .process-steps {
                grid-template-columns: 1fr;
            }
            
            .section-title {
                font-size: 1.5rem;
            }
        }
        
        /* Small mobile devices */
        @media (max-width: 576px) {
            .policy-content {
                padding: 1.2rem;
            }
            
            .policy-section-item h3 {
                font-size: 1.3rem;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
            
            .policy-table th,
            .policy-table td {
                padding: 8px 10px;
                font-size: 0.9rem;
            }
            
            .faq-question {
                padding: 15px 20px;
                font-size: 0.95rem;
            }
            
            .faq-answer {
                padding: 0 20px;
                font-size: 0.9rem;
            }
            
            .faq-item.active .faq-answer {
                padding: 0 20px 20px;
            }
        }