
    body {
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 0;
    }

    .header {
        background-color: #333;
        color: white;
        padding: 10px 20px;
    }

    .hamburger-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .hamburger-menu ul li {
        display: inline;
        margin-right: 20px;
    }

    .hamburger-menu ul li a {
        color: white;
        text-decoration: none;
    }

    #home, #about, #support {
        padding: 20px;
        max-width: 800px;
        margin: 0 auto; /* Centering the sections */
    }

    #home {
        text-align: center;
    }

    #about {
        text-align: left; /* Align text to the left for About section */
        font-size: 20px;
        font-weight: bold;
        line-height: 1.6;
    }

    #ticket-popup {
        background: rgba(0, 0, 0, 0.8);
        color: white;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 20px;
        border-radius: 8px;
        display: none;
    }
    