
        body {
            font-family: 'Open Sans', sans-serif;
            background-color: #000000;
            color: #f1f1f1;
            margin: 0;
            padding: 0;
        }

        .logo {
            font-family: 'Impact', sans-serif;
            font-size: 50px;
            color: #00acc1;
            text-align: center;
            padding-top: 50px;
            letter-spacing: 6px;
            text-shadow: 2px 2px 5px rgba(0, 172, 193, 0.6);
            text-transform: uppercase;
        }

        h1 {
            text-align: center;
            font-size: 33px;
            color: #00acc1;
            margin-top: 20px;
            font-weight: bold;
            text-shadow: 1px 1px 3px rgba(0, 172, 193, 0.4);
        }

        .slogan {
            text-align: center;
            font-style: italic;
            font-size: 16px;
            color: #b0e0e6;
            margin-top: 10px;
        }

        .button-link {
            display: block;
            text-align: center;
            margin-top: 30px;
            cursor: pointer;
        }

        .button-link p {
            background-color: #00acc1;
            color: white;
            padding: 12px 25px;
            border-radius: 8px;
            font-size: 18px;
            font-weight: bold;
            width: fit-content;
            margin: 0 auto;
            text-transform: uppercase;
            letter-spacing: 2px;
            box-shadow: 0 4px 8px rgba(0, 172, 193, 0.5);
        }

        .button-link p:hover {
            background-color: #0097a7;
            box-shadow: 0 6px 12px rgba(0, 151, 167, 0.6);
        }

        .content {
            width: 1024px;
            margin: 40px auto;
        }

        p {
            font-size: 16px;
            margin-bottom: 10px;
            margin-top: 0;
            line-height: 30px;
        }

        img {
            display: block;
            margin: 0 auto;
            max-width: 100%;
            height: auto;
            margin-top: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 172, 193, 0.3);
        }

        h2, h3 {
            color: #00acc1;
        }

        h2 {
            font-size: 28px;
        }

        h3 {
            font-size: 22px;
            margin-top: 25px;
        }

        ul, ol {
            padding-left: 25px;
            font-size: 16px;
        }

        ul li, ol li {
            margin-bottom: 10px;
        }

        blockquote {
            font-style: italic;
            background-color: rgba(0, 172, 193, 0.1);
            padding: 15px 30px;
            margin-top: 20px;
            border-left: 8px solid #00acc1;
            font-size: 16px;
            color: #b0e0e6;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 30px;
        }

        table, th, td {
            border: 1px solid #ddd;
            padding: 8px 12px;
            text-align: left;
        }

        th {
            background-color: #00acc1;
            color: white;
            font-size: 16px;
        }

        td {
            background-color: #1a1a1a;
            color: #f1f1f1;
            font-size: 16px;
        }

        footer {
            background-color: #1a1a1a;
            color: #f1f1f1;
            text-align: center;
            padding: 20px 0;
            position: relative;
            bottom: 0;
            width: 100%;
        }

        footer a {
            color: #00acc1;
            text-decoration: none;
        }

        footer a:hover {
            text-decoration: underline;
        }
        a {
          color: #3bb5ff;
        }
        a:hover{
          text-decoration: none;
        }

    