
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            color: #333;
        }

        /* Top Bar */
        .top-bar {
            background-color: #404042;
            color: white;
            padding: 1rem 0;
            width: 100%;
        }

        .top-bar-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
            text-align: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
        }

        /* Main Content */
        .main-content {
            background-color: white;
            padding: 3rem 0;
            min-height: 70vh;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        /* Intro Section */
        .intro {
            text-align: center;
            margin-bottom: 4rem;
        }

        .intro h1 {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: #1f2937;
        }

        .intro p {
            font-size: 1rem;
            color: #6b7280;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .service-item {
            text-align: center;
            padding: 2rem 1rem;
            border-radius: 8px;
            transition: transform 0.3s ease;
        }

        .service-item:hover {
            transform: translateY(-5px);
        }

        .service-icon {
            width: 20px;
            height: 20px;
            margin: 0 auto 1rem;
            background-color: #dc2626;
            border-radius: 3px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* .service-icon::before {
            content: "⚡";
            color: white;
            font-size: 12px;
        } */

        /* .service-item:nth-child(2) .service-icon::before { content: "💡"; }
        .service-item:nth-child(3) .service-icon::before { content: "💡"; }
        .service-item:nth-child(4) .service-icon::before { content: "💡"; }
        .service-item:nth-child(5) .service-icon::before { content: "💡"; }
        .service-item:nth-child(6) .service-icon::before { content: "💡"; } */

        .service-item h3 {
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
            color: #1f2937;
        }

        .service-item p {
            font-size: 0.875rem;
            color: #6b7280;
            line-height: 1.5;
        }

        /* Footer */
        .footer {
            background-color: #dc2626;
            color: white;
            padding: 2rem 0;
            width: 100%;

/* unvisited link */
a:link {
  color: #fff;
}

/* visited link */
a:visited {
  color: #fff;
}

/* mouse over link */
a:hover {
  color: #fff;
}

/* selected link */
a:active {
  color: #fff;
}
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
            text-align: center;
        }

        .footer p {
            font-size: 0.875rem;
            opacity: 0.9;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .intro h1 {
                font-size: 1.75rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .service-item {
                padding: 1.5rem 1rem;
            }

            .container {
                padding: 0 0.75rem;
            }
            .logo img{
           width: 350px;
           height: 80px;
        }

        @media (max-width: 480px) {
            .intro h1 {
                font-size: 1.5rem;
            }

            .intro p {
                font-size: 0.875rem;
            }

            .main-content {
                padding: 2rem 0;
            }

            .services-grid {
                margin-top: 2rem;
            }
        }

        @media (min-width: 1024px) {
            .services-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
  