* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', Arial, sans-serif; /* Use Roboto, fallback to Arial */
    background-color: #fff;
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    text-align: center;
    max-width: 600px;
    padding: 15px;
    margin: 0 auto;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
}

header {
    padding-top: 15px;
}

header h1 {
    font-size: 2rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 700; /* Bold for headings with Roboto */
}

.title-green {
    color: #B71C1C; /* Green for first word */
}

.title-black {
    color: #000; /* Blue for second word */
}

.intro {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

main {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.form-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 400px;
}

.content {
    text-align: left;
    width: 100%;
    max-width: 500px;
}

.content h2 {
    font-size: 1.3rem;
    color: #B71C1C; /* Green for subheadings */
    margin: 20px 0 10px;
    font-weight: 700; /* Bold for subheadings */
}

.content p {
    font-size: 1rem;
    margin-bottom: 15px;
}

.input-field {
    padding: 12px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    font-family: 'Roboto', Arial, sans-serif; /* Roboto for inputs */
}

.continue-btn {
    background-color: #B71C1C; /* Green for button */
    color: #fff;
    border: none;
    padding: 12px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    width: 100%;
    font-family: 'Roboto', Arial, sans-serif; /* Roboto for button */
}

.continue-btn:hover {
    background-color: #9B111E; /* Darker green for hover */
}

.result {
    font-size: 1.1rem;
}

.result-green {
    color: #B71C1C; /* Green for result text */
}

footer {
	font-family: Arial, sans-serif; /* Use Roboto, fallback to Arial */
    margin-top: auto;
    padding-bottom: 15px;
}

.footer-links a {
    color: #333;
    text-decoration: none;
    font-size: 0.85rem;
    margin: 0 5px;
    font-family: 'Roboto', Arial, sans-serif; /* Roboto for links */
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-text {
    font-size: 0.85rem;
    margin-top: 5px;
    font-family: 'Roboto', Arial, sans-serif; /* Roboto for footer text */
}

/* Media Queries for Mobile Responsiveness */
@media (max-width: 480px) {
    .container {
        padding: 10px;
    }

    header h1 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .intro {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }

    .content h2 {
        font-size: 1.1rem;
        margin: 15px 0 8px;
    }

    .content p {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }

    .input-field {
        padding: 10px;
        font-size: 0.9rem;
    }

    .continue-btn {
        padding: 10px;
        font-size: 0.9rem;
    }

    .footer-links a {
        font-size: 0.75rem;
        margin: 0 3px;
    }

    .footer-text {
        font-size: 0.75rem;
    }
}