body {
    background-color: #004733; /* Deep green background */
    color: white;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    max-width: 800px;
    margin: 40px auto;
    padding: 25px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: left;
    min-height: 400px;
}

h1 {
    color: #ff7f50;
    text-align: center;
    font-size: 32px;
}

p {
    font-size: 25px;
    line-height: 1.6;
    color: white;
}

.footer-about-link {
    color: #ff7f50;
    text-decoration: none;
    font-weight: bold;
    margin-left: 25px;
}

footer {
    text-align: center;
    padding: 15px;
    background: #004733;
    color: white;
    margin-top: 20px;
}

.continue-button {
    background-color: #ff9800; /* Orange color */
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
    display: block;
    width: 200px;
    margin: 20px auto;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.continue-button:hover {
    background-color: #e68900; /* Darker orange on hover */
}

