
        .hero-section {
            background-image: url('https://via.placeholder.com/1920x600'); /* Add your image URL */
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
        }

        .service-card {
            border: 1px solid #ddd;
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            transition: transform 0.3s ease;
        }

        .service-card:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .footer {
            background-color: #333;
            color: white;
            padding: 40px 0;
        }

        .footer a {
            color: white;
            text-decoration: none;
        }

        .footer a:hover {
            text-decoration: underline;
        }

        /* Add some spacing for mobile view */
        @media (max-width: 767px) {
            .hero-section {
                padding: 50px 0;
            }

            .service-card {
                margin-bottom: 20px;
            }
        }