  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        :root {
            --primary: #0056b3;
            --secondary: #ff6b00;
            --accent: #00a896;
            --light: #f8f9fa;
            --dark: #212529;
            --success: #28a745;
            --warning: #ffc107;
            --gray: #6c757d;
        }

        body {
            background-color: #f5f7fb;
            color: #333;
            line-height: 1.6;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
		
		
		/* Hamburger Styles */
    .hamburger {
        width: 30px;
        height: 22px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
        transition: transform 0.3s ease;
    }

    .hamburger div {
        height: 4px;
        background-color: var(--secondary);
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    /* Animate hamburger to X when active */
    .hamburger.active div:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active div:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active div:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

        /* Header Styles */
        header {
            background: linear-gradient(135deg, var(--primary), #003d82);
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            animation: fadeIn 1s ease;
        }

        .logo-text {
            font-size: 1.8rem;
            margin-left: 10px;
            font-weight: 700;
        }

        .logo-icon {
            font-size: 2rem;
            color: var(--secondary);
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 25px;
        }

        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 8px 15px;
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        nav ul li a:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }

        .top-buttons {
            display: flex;
        }

        .top-btn {
            background-color: var(--secondary);
            color: white;
            border: none;
            padding: 10px 20px;
            margin-left: 10px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .top-btn:hover {
            background-color: #e55f00;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%230056b3"/><path d="M0 0L100 100" stroke="%23ff6b00" stroke-width="2"/><path d="M100 0L0 100" stroke="%23ff6b00" stroke-width="2"/></svg>');
            background-size: cover;
            color: white;
            text-align: center;
            padding: 80px 20px;
            animation: heroAnim 1s ease;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .hero-btn {
            background-color: var(--secondary);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .hero-btn:hover {
            background-color: #e55f00;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
        }
		
		
        /* Marquee */
        .marquee-container {
            background-color: var(--dark);
            color: white;
            padding: 12px 0;
            overflow: hidden;
            position: relative;
        }

        .marquee {
            white-space: nowrap;
            animation: marquee 25s linear infinite;
        }

        .marquee span {
            margin-right: 50px;
            font-weight: 500;
        }

        /* Services Section */
        .services {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            color: var(--primary);
            position: relative;
            padding-bottom: 15px;
            font-size: 2.2rem;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--secondary);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            animation: fadeUp 0.5s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .service-icon {
            background: linear-gradient(135deg, var(--primary), #003d82);
            color: white;
            font-size: 2.5rem;
            padding: 30px 0;
            text-align: center;
        }

        .service-content {
            padding: 25px;
        }

        .service-content h3 {
            color: var(--primary);
            margin-bottom: 15px;
            font-size: 1.4rem;
        }

        .service-content p {
            color: var(--gray);
            margin-bottom: 20px;
        }

        .service-btn {
            background-color: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
            padding: 8px 20px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .service-btn:hover {
            background-color: var(--primary);
            color: white;
        }

        /* Support Section */
        .support {
            background-color: var(--light);
            padding: 80px 0;
            text-align: center;
        }

        .support-options {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 50px;
        }

        .support-option {
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            width: 250px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .support-option:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .support-option i {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .support-option h3 {
            color: var(--dark);
            margin-bottom: 15px;
        }

        /* Info Section */
        .info {
            padding: 80px 0;
        }

        .info-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .info-section {
            margin-bottom: 40px;
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }

        .info-section h3 {
            color: var(--primary);
            margin-bottom: 20px;
            font-size: 1.6rem;
        }

        .info-section p {
            margin-bottom: 15px;
            color: #444;
        }

        /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 50px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 30px;
        }

        .footer-column h3 {
            color: var(--secondary);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 10px;
        }

        .footer-column ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-column ul li a:hover {
            color: white;
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 0.9rem;
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes fadeUp {
            from { 
                opacity: 0;
                transform: translateY(20px);
            }
            to { 
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes heroAnim {
            from { 
                opacity: 0;
                transform: scale(1.05);
            }
            to { 
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes marquee {
            0% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .header-container {
                flex-direction: column;
                text-align: center;
            }
            
            nav ul {
                margin-top: 20px;
                justify-content: center;
            }
            
            .top-buttons {
                margin-top: 20px;
            }
            
            .hero h2 {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 768px) {
            nav ul {
                flex-direction: column;
                align-items: center;
            }
            
            nav ul li {
                margin: 10px 0;
            }
            
            .top-buttons {
                flex-direction: column;
                width: 100%;
            }
            
            .top-btn {
                margin: 5px 0;
                width: 100%;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .hero-btn {
                width: 100%;
                max-width: 300px;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .logo-text {
                font-size: 1.5rem;
            }
            
            .hero h2 {
                font-size: 1.8rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
        }
        
        
        
        /* FAQ Section */
        .faq {
            padding: 80px 0;
        }

        .faq-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 20px;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%230056b3"/><path d="M0 0L100 100" stroke="%23ff6b00" stroke-width="2"/><path d="M100 0L0 100" stroke="%23ff6b00" stroke-width="2"/></svg>');
            background-size: cover;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            color:white;
        }

        .faq-item:hover {
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }

        .faq-question {
            padding: 20px;
            background: linear-gradient(135deg, var(--pc-matic-blue), var(--pc-matic-dark));
            color: white;
            font-size: 1.2rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }

        .faq-answer.open {
            padding: 20px;
            max-height: 500px;
        }
		
		
		/* Privacy Content */
        .privacy-content {
            padding: 80px 0;
        }


        .privacy-section {
            margin-bottom: 40px;
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .privacy-section:hover {
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }

        .privacy-section h3 {
            color: var(--pc-matic-blue);
            margin-bottom: 20px;
            font-size: 1.6rem;
            display: flex;
            align-items: center;
        }

        .privacy-section h3 i {
            margin-right: 10px;
            color: var(--pc-matic-orange);
        }

        .privacy-section p {
            margin-bottom: 15px;
            color: #444;
        }

        .privacy-list {
            margin: 20px 0;
            padding-left: 30px;
        }

        .privacy-list li {
            margin-bottom: 10px;
            color: #555;
        }

       
		
		 /* Return Policy Content */
        .policy-content {
            padding: 80px 0;
        }
        .policy-section {
            margin-bottom: 40px;
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .policy-section:hover {
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }

        .policy-section h3 {
            color: var(--pc-matic-blue);
            margin-bottom: 20px;
            font-size: 1.6rem;
            display: flex;
            align-items: center;
        }

        .policy-section h3 i {
            margin-right: 10px;
            color: var(--pc-matic-orange);
        }

        .policy-section p {
            margin-bottom: 15px;
            color: #444;
        }

        .policy-list {
            margin: 20px 0;
            padding-left: 30px;
        }

        .policy-list li {
            margin-bottom: 10px;
            color: #555;
        }

        .highlight-box {
            background-color: var(--pc-matic-light);
            border-left: 4px solid var(--pc-matic-orange);
            padding: 20px;
            margin: 20px 0;
            border-radius: 4px;
        }

        /* Process Steps */
        .process-steps {
            display: flex;
            justify-content: space-between;
            margin: 40px 0;
            flex-wrap: wrap;
        }

        .step {
            flex: 1;
            min-width: 250px;
            text-align: center;
            padding: 20px;
            margin: 10px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .step:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .step-number {
            width: 50px;
            height: 50px;
            background: var(--pc-matic-blue);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-size: 1.5rem;
            font-weight: bold;
        }

      
       
        @media (max-width: 480px) {
            
            .policy-section {
                padding: 20px;
            }
            
            .policy-section h3 {
                font-size: 1.4rem;
            }
        }
		
		
		/* Terms Content */
        .terms-content {
            padding: 80px 0;
        }

        .terms-section {
            margin-bottom: 40px;
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .terms-section:hover {
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }

        .terms-section h3 {
            color: var(--pc-matic-blue);
            margin-bottom: 20px;
            font-size: 1.6rem;
            display: flex;
            align-items: center;
        }

        .terms-section h3 i {
            margin-right: 10px;
            color: var(--pc-matic-orange);
        }

        .terms-section p {
            margin-bottom: 15px;
            color: #444;
        }

        .terms-list {
            margin: 20px 0;
            padding-left: 30px;
        }

        .terms-list li {
            margin-bottom: 10px;
            color: #555;
        }

       
        
        @media (max-width: 480px) {
            
            .terms-section {
                padding: 20px;
            }
            
            .terms-section h3 {
                font-size: 1.4rem;
            }
        }
		
		
		
		/* Contact Section */
        .contact {
            padding: 80px 0;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .contact-info {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }

        .contact-info h3 {
            color: var(--pc-matic-blue);
            margin-bottom: 20px;
            font-size: 1.4rem;
        }

        .contact-detail {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .contact-detail i {
            font-size: 1.5rem;
            color: var(--pc-matic-orange);
            margin-right: 15px;
            width: 30px;
        }
		
		
		
		/* Download Section */
        .downloads {
            padding: 80px 0;
        }


        .download-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .download-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            animation: fadeUp 0.5s ease;
        }

        .download-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .download-icon {
            background: linear-gradient(135deg, var(--pc-matic-blue), var(--pc-matic-dark));
            color: white;
            font-size: 2.5rem;
            padding: 30px 0;
            text-align: center;
        }

        .download-content {
            padding: 25px;
        }

        .download-content h3 {
            color: var(--pc-matic-blue);
            margin-bottom: 15px;
            font-size: 1.4rem;
        }

        .download-content p {
            color: var(--gray);
            margin-bottom: 20px;
        }

        .download-btn {
            background-color: var(--pc-matic-blue);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            width: 100%;
            text-align: center;
            display: block;
        }

        .download-btn:hover {
            background-color: var(--pc-matic-dark);
        }

        /* Info Section */
        .info {
            padding: 80px 0;
            background-color: var(--pc-matic-light);
        }


        @media (max-width: 768px) {
           
            .download-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
           
            .info-section {
                padding: 20px;
            }
        }
		
		
		


        

        
		
		
		
		
		

