/* General Body Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    text-align: center;
    padding: 1rem;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

/* Header */
header {
    margin-bottom: 2rem;
}

.logo {
    width: 100px;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

header p {
    max-width: 600px;
    margin: 0 auto 2rem auto;
    font-size: 1.1rem;
}

/* Main Content */
main {
    flex: 1;
}

/* Form Styles */
form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

input[type="text"],
input[type="email"] {
    padding: 0.8rem;
    margin: 0.5rem 0;
    width: 100%;
    max-width: 400px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.privacy-policy {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 400px;
    text-align: left;
    font-size: 0.9rem;
}

.privacy-policy input[type="checkbox"] {
    margin-right: 0.5rem;
}

.privacy-policy a {
    color: #264e36;
    text-decoration: none;
}

.privacy-policy a:hover {
    text-decoration: underline;
}

button {
    padding: 0.8rem 1.5rem;
    background-color: #264e36;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #3a7551;
}

/* Status Message */
#status {
    margin-top: 1.5rem;
    font-weight: 500;
}

/* Footer */
footer {
    margin-top: 3rem;
    padding: 1rem;
    font-size: 0.9rem;
}

footer a {
    color: #555;
    text-decoration: none;
    margin: 0 10px;
}

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

/* Mobile Optimization */
@media (max-width: 600px) {
    body {
        padding: 1rem;
    }

    h1 {
        font-size: 1.8rem;
    }

    header p {
        font-size: 1rem;
    }

    input[type="text"],
    input[type="email"] {
        width: calc(100% - 2rem);
    }
}