body {
            margin: 0;
            font-family: 'Arial', sans-serif;
            background-color: #000;
            color: #fff;
        }

        .container {
            padding: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        h1, h2 {
            text-align: center;
            font-family: 'Georgia', serif;
        }

        .header {
            text-align: center;
            margin-bottom: 30px;
        }

        .header h1 {
            font-size: 2.5em;
            margin: 0;
        }

        .header p {
            font-size: 1.2em;
        }

        .section {
            margin: 30px 0;
        }

        .section-title {
            font-size: 1.8em;
            margin-bottom: 10px;
        }

        .cards {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }

        .card {
            background-color: #1a1a1a;
            padding: 20px;
            border-radius: 10px;
            width: 300px;
            text-align: left;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            position: relative;
        }

        .card h3 {
            font-size: 1.5em;
            margin-bottom: 10px;
        }

        .card p {
            margin: 5px 0;
        }

        .card a {
            text-decoration: none;
            color: #4caf50;
            font-weight: bold;
            position: absolute;
            bottom: 10px;
            right: 10px;
        }

        .card:hover {
            transform: scale(1.05);
            transition: transform 0.3s;
        }

        .footer {
            text-align: center;
            margin-top: 50px;
        }

        .footer a {
            text-decoration: none;
            color: #4caf50;
            font-weight: bold;
            border: 2px solid #4caf50;
            padding: 10px 20px;
            border-radius: 5px;
        }

        .footer a:hover {
            background-color: #4caf50;
            color: #000;
        }

        .business, .ecommerce, .other-services {
            background-color: #333;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 30px;
        }

        .business h3, .ecommerce h3, .other-services h3 {
            color: #4caf50;
        }