body {
            margin: 0;
            font-family: Arial, sans-serif;
            background: linear-gradient(135deg, black, #880808);
            color: white;
        }
        .navbar {
            display: flex;
            flex-wrap: wrap;
            justify-content: left;
            align-items: flex-start;
            background: linear-gradient(to right, #880808, black);
            padding: 10px;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 100;
        }
        .navbar a {
            color: white;
            text-decoration: none;
            margin: 5px 0px;
            font-size: 1em;
            display: flex;
            align-items: center;
        }
        .navbar a i {
            margin-right: 8px;
        }
        .navbar img {
            width: 50px;
            height: 50px;
        }
        .container {
            text-align: center;
            padding: 20px;
            padding-top: 100px;
        }
        h2 {
            margin-top: 20px;
            font-size: 1.5em;
        }
        p {
            font-size: 1em;
            margin: 15px 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;
            font-size: 1.2em;
        }
        .support-section p {
            margin: 10px 0;
            font-size: 0.9em;
        }
        .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: 0.9em;
        }
        .footer img {
            vertical-align: middle;
            margin-left: 10px;
            width: 100px;
            height: 100px;
        }
        .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: 1em;
            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: 1em;
            margin-top: 20px;
            transition: background-color 0.3s ease;
            border: none;
            cursor: pointer;
        }
        .button i {
            margin-right: 5px;
        }
        .button:hover {
            background-color: #a00000;
        }
        @media (max-width: 600px) {
            .navbar {
                flex-direction: column;
                align-items: flex-start;
            }
            .dropbtn {
                width: 100%;
            }
            .dropdown-content {
                min-width: 100%;
                position: absolute;
                display: none;
            }
            .dropdown:hover .dropdown-content {
                display: block;
                position: absolute;
                width: 100%;
            }
        }
		.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    background-color: transparent;
    color: white;
    padding: 10px 15px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #880808;
    min-width: 160px;
    z-index: 1;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #a52a2a;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    background-color: #880808;
}