    body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f7f7f7;
        }
        .container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            padding: 20px;
        }
        .card {
            width: 100%;
            max-width: 800px;
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            padding: 20px;
            margin-bottom: 20px;
        }
        h1 {
            color: #fff;
            text-align: center;
            margin-top: 20px;
            margin-bottom: 20px;
        }
        h2 {
            color: #333;
            font-size: 22px;
            margin-top: 10px;
            margin-bottom: 10px;
        }
        p, .info {
            font-size: 16px;
            margin-bottom: 10px;
        }
        .speedtest-widget {
            text-align: center;
            width: 100%;
        }
        /* Style for fetched content */
        .fetched-content {
            width: 100%;
            height: auto;
            min-height: 600px;
            background-color: #fff;
        }