
    @keyframes typewriter {
        from { width: 0; }
        to { width: 500px; }
    }

    @keyframes blinkCursor {
        0%, 50% { border-right-color: black; }
        50%, 100% { border-right-color: transparent; }
    }

    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    body {
        margin: 0;
        padding: 0;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-color: white;
        font-family: 'Courier New', Courier, monospace;
    }

    .logo-container {
        margin-bottom: 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .logo {
        font-size: 4rem;
        font-weight: bold;
        color: black;
        letter-spacing: 2px;
        white-space: nowrap;
        overflow: hidden;
        border-right: 4px solid black;
        width: 0;
        animation: 
        typewriter 1.25s steps(18) 1s forwards,
        blinkCursor 0.75s step-end infinite;
    }


    .menu {
        display: flex;
        gap: 1rem;
        text-align: center;
        position: relative;
        opacity: 0;
        animation: fadeIn 1s ease 3s forwards;
    }

    .menu-item {
        font-size: 1.5rem;
        color: black;
        text-decoration: none;
        padding: 0.5rem 1rem;
        transition: transform 0.3s ease;
        cursor: pointer;
        position: relative;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .menu-item:hover {
        transform: scale(1.1);
    }

    .dropdown {
        display: none;
        position: absolute;
        left: 0;
        top: 100%;
        background-color: white;
        border: 1px solid #ddd;
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        padding: 0.5rem 0;
        min-width: 200px;
        z-index: 1000;
        flex-direction: column;
    }

    .dropdown-down {
        display: none;
        position: absolute;
        left: 0;
        top: 100%;
        background-color: white;
        border: 1px solid #ddd;
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        padding: 0.5rem 0;
        min-width: 200px;
        z-index: 1000;
        flex-direction: column;
    }


    .menu-item:hover .dropdown {
        display: block;
    }

    
    .dropdown-item {
        display: block;
        padding: 0.5rem 1rem;
        color: black;
        text-decoration: none;
        font-size: 1rem;
        transition: background-color 0.3s ease;
    }

    .dropdown-item:hover {
        background-color: #f5f5f5;
    }

    .hamburger {
        display: none;
        font-size: 1.5rem;
        cursor: pointer;
        padding: 0.5rem;
        opacity: 0;
        animation: fadeIn 1s ease 3s forwards;
    }

    .menu-item i {
        transition: transform 0.3s ease;
    }
    
    /* Change chevron direction on hover */
    .menu-item:hover i {
        transform: rotate(90deg); /* Rotates the icon 90 degrees */
    }

    /* Form */

    .form-module {
        position: fixed;
        bottom: -100%;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 1);
        box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.2);
        transition: bottom 0.5s ease-in-out;
        z-index: 1000;
    }
    
    .form-module.active {
        bottom: 0;
    }
    
    .form-content {
        padding: 2rem;
        text-align: center;
    }
    
    form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    input, textarea, button {
        width: 100%;
        padding: 0.75rem;
        margin: 0.5rem 0;
        border: 1px solid #ccc;
        border-radius: 4px;
    }
    
    button {
        background-color: #ccc;
        color: white;
        border: none;
        cursor: pointer;
    }
    
    button:hover {
        background-color: #0056b3;
    }

    footer {
        background-color: #333;
        color: white;
        padding: 0.5rem;
        display: flex;
        position: fixed;        
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 1000; /* Ensure it stays above other content */
    }

    footer .terms {
        text-align: left;
        margin-left: 10px;
    }

    footer .terms a {
        color: white;
        text-decoration: none;
    }

    footer .terms a:hover {
        text-decoration: underline;
    }

    footer .rights {
        text-align: right;
        margin-right: 10px;
        margin-left: auto;
    }


    @media (max-width: 768px) {
        .menu-item i {
            transition: none;
        }
        
        /* Change chevron direction on hover */
        .menu-item:hover i {
            transform: none; /* Rotates the icon 90 degrees */
        }
        .hamburger {
            display: none;
            position: absolute;
            top: 1rem;
            right: 1rem;
        }

        .menu {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            text-align: center;
            position: relative;
            opacity: 0;
            animation: fadeIn 1s ease 3s forwards;
            transition: transform 0.3s ease;
        }

        .menu-item {
            font-size: 1.5rem;
            color: black;
            text-decoration: none;
            padding: 0.5rem 1rem;
            transition: transform 0.3s ease;
            cursor: pointer;
            position: relative;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            z-index: 1; /* Ensure items are on top of dropdown */
        }

        .menu.active {
            display: flex;
        }
        .menu-item:hover .dropdown {
            display: block;
            left: 100%; /* Position the dropdown to the right */
            top: 0;
        }
    
        /* Slide all menu items to the left on hover */
        .menu:hover {
            transform: translateX(-120px); /* Slide all items to the left */
        }

        @keyframes typewriter {
            from { width: 0; }
            to { width: 500px; }
        }
    }

    @media (max-width: 520px) {
        .logo {
            font-size: 2.5rem;
        }

        .menu {
            font-size: x-small ;
            display: flex;
            gap: 1rem;
            text-align: center;
            position: relative;
            opacity: 0;
            animation: fadeIn 1s ease 3s forwards;
        }

        @keyframes typewriter {
            from { width: 0; }
            to { width: 315px; }
        }
    }
