body {
            margin: 0;
            font-family: Arial, sans-serif;
            background: linear-gradient(135deg, black, #880808);
            color: white;
        }
        .navbar {
            display: flex;
            align-items: center;
            background: linear-gradient(to right, #880808, black);
            padding: 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 100;
        }
        .navbar a {
            color: white;
            text-decoration: none;
            margin: 0 10px;
            font-size: 1.2em;
            display: flex;
            align-items: center;
        }
        .navbar a i {
            margin-right: 8px;
        }
        .navbar img {
            width: 75px;
            height: 75px;
        }
        .container {
            text-align: center;
            padding: 20px;
            padding-top: 80px;
        }
        h2 {
            margin-top: 20px;
            font-size: 2em;
        }
        p {
            font-size: 1.2em;
            margin: 20px 0;
        }
        .support-section {
            background: rgba(255, 255, 255, 0.2);
            padding: 20px;
            border-radius: 10px;
            margin: 20px 0;
            text-align: left;
        }
        .support-section h3 {
            color: red;
        }
        .support-section p {
            margin: 10px 0;
        }
        .footer {
            text-align: center;
            padding: 20px;
            background: rgba(0, 0, 0, 0.8);
        }
        .footer a {
            color: white;
            text-decoration: none;
            margin: 0 10px;
            font-size: 1em;
        }
        .footer img {
            vertical-align: middle;
            margin-left: 10px;
            width: 150px;
            height: 150px;
        }
        .whatsapp-icon {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #25D366;
            color: white;
            border-radius: 50%;
            padding: 10px;
            font-size: 2em;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            text-align: center;
        }
        .register-icon {
            display: inline-block;
            background-color: #8b0000;
            color: white;
            padding: 5px 10px;
            border-radius: 5px;
            text-decoration: none;
            font-size: 1.2em;
            margin-top: 0px;
            transition: background-color 0.3s ease;
        }
        .register-icon i {
            margin-right: 0px;
        }
        .register-icon:hover {
            background-color: #8b0000;
        }
		.button {
            display: inline-block;
            background-color: #8b0000;
            color: white;
            padding: 10px 20px;
            border-radius: 5px;
            text-decoration: none;
            font-size: 1.2em;
            margin-top: 20px;
            transition: background-color 0.3s ease;
            border: none;
            cursor: pointer;
        }
        .button i {
            margin-right: 10px;
        }
        .button:hover {
            background-color: #a00000;
        }