h1 {
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 0 0 10px #00FF00;
    /* Glowing effect for title */
}

.menu-ribbon {
    background-color: #222;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
    margin-bottom: 20px;
}

.menu-ribbon a {
    color: #00FF00;
    /* Green color for menu links */
    text-decoration: none;
    margin: 0 15px;
    font-size: 28px;
    text-shadow: 0 0 5px #00FF00;
    /* Glowing effect for menu links */
}

.menu-ribbon a:hover {
    color: #00CC00;
    /* Darker green on hover */
}

.faq-container {
    max-width: 800px;
    margin: auto;
}

.faq-item {
    background-color: #222;
    border: 1px solid #00FF00;
    /* Green border for FAQ items */
    border-radius: 5px;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-size: 24px;
    /* Increased font size */
    color: #00FF00;
    /* Green color for questions */
    text-shadow: 0 0 10px #00FF00;
    /* Glowing effect for questions */
}


.faq-image {
    width: 100%;
    height: auto;
    /* Maintains aspect ratio */
    display: block;
    /* Removes inline spacing below image */
}


.faq-answer {
    padding: 15px;
    display: none;
    /* Hidden by default */
    border-top: 1px solid #00FF00;
    /* Green border above answer */
    color: #FFFFFF;
    /* White color for answers */
    background-color: rgba(0, 128, 0, 0.8);
    /* Semi-transparent green background */
    font-size: 18px;
    /* Increased font size for answers */
    border-radius: 5px;
    /* Rounded corners for the background */
}

.arrow {
    transition: transform 0.3s;
}

.arrow.open {
    transform: rotate(90deg);
    /* Rotate arrow when open */
}


.faq-container {
    max-width: 800px;
    margin: auto;
}

.faq-item {
    background-color: #222;
    border: 1px solid #00FF00;
    /* Green border for FAQ items */
    border-radius: 5px;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-size: 24px;
    /* Increased font size */
    color: #00FF00;
    /* Green color for questions */
    text-shadow: 0 0 10px #00FF00;
    /* Glowing effect for questions */
}

.faq-answer {
    padding: 15px;
    display: none;
    /* Hidden by default */
    border-top: 1px solid #00FF00;
    /* Green border above answer */
    color: #FFFFFF;
    /* White color for answers */
    background-color: rgba(0, 128, 0, 0.8);
    /* Semi-transparent green background */
    font-size: 18px;
    /* Increased font size for answers */
    border-radius: 5px;
    /* Rounded corners for the background */
}

.arrow {
    transition: transform 0.3s;
}

.arrow.open {
    transform: rotate(90deg);
    /* Rotate arrow when open */
}

body {
    background-color: black;
    color: lime;
    font-family: 'Courier New', Courier, monospace;
    /* Retro vibe */
    margin: 0;
    padding: 0;
    text-align: center;
}

.container {
    padding: 1px;
}


h1 {
    font-size: 3em;
    text-shadow: 2px 2px 4px rgba(0, 255, 0, 0.7);
}

.logo {
    width: 150px;
    /* Adjust width as necessary */
    height: 150px;
    /* Maintain aspect ratio */
    margin: 20px 0;
    /* Space around the logo */
}

p {
    font-size: 1.5em;
    margin: 20px 0;
}

.button {
    background-color: lime;
    color: black;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1.2em;
    border: 2px solid lime;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: black;
    color: lime;
    cursor: pointer;
}

.features {
    margin: 50px 0;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    /* Allow wrapping to handle smaller screens */
    padding: 20px;
}

.feature {
    border: 2px solid lime;
    border-radius: 10px;
    padding: 20px;
    width: 30%;
    background-color: rgba(0, 0, 0, 0.7);
    box-sizing: border-box;
    /* Include padding in width calculation */
}

h2 {
    font-size: 2em;
    text-shadow: 1px 1px 2px rgba(0, 255, 0, 0.7);
    margin-bottom: 10px;
}

.feature p {
    font-size: 1.1em;
}

.footer {
    background-color: rgba(0, 0, 0, 0.8);
    /* Darker for contrast */
    padding: 30px;
    /* More padding for a spacious feel */
    border-top: 2px solid lime;
    /* Border to match theme */
}

.ribbon {
    display: flex;
    justify-content: center;
    /* Center links */
}

.ribbon a {
    color: lime;
    /* Keep link color consistent */
    text-decoration: none;
    margin: 0 20px;
    /* Increased spacing between links */
    font-size: 1.5em;
    /* Larger font size for better visibility */
}

/* Media Query for Mobile Responsiveness */
@media (max-width: 768px) {
    .feature {
        width: 100%;
        /* Full width on smaller screens */
        margin-bottom: 20px;
        /* Add space between features */
    }

    .ribbon a {
        font-size: 1.