/* General Styles */
body {
    font-family: 'Helvetica Neue', sans-serif;
    margin: 0;
    background-color: #f9f9f9;
    color: #333;
}

a {
    text-decoration: none;
    color: #007bff;
    transition: color 0.3s ease;
}

a:hover {
    color: #0056b3;
}

/* Header & Navigation */
header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 1rem 2rem;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 2rem;
}

/* Checklist Form Section */
.checklist-form {
    max-width: 800px;
    margin: 4rem auto;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.checklist-form h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.checklist-form p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #666;
}

form h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #eee;
    padding-bottom: 0.5rem;
}

form label {
    display: block;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.5;
}

input[type="checkbox"] {
    margin-right: 0.8rem;
    transform: scale(1.2);
}

input[type="text"],
textarea {
    width: 100%;
    padding: 0.8rem;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Helvetica Neue', sans-serif;
    box-sizing: border-box;
}

textarea {
    resize: vertical;
}

.checklist-form ul {
    margin-top: 2rem;
    padding-left: 1.5rem;
    list-style-type: disc;
}

.checklist-form ul li {
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1.5rem;
    margin-top: 4rem;
}

/* Responsive */
@media (max-width: 768px) {
    nav ul {
        display: none; /* Simple responsive nav for now */
    }

    .checklist-form {
        margin: 2rem;
        padding: 1.5rem;
    }

    .checklist-form h1 {
        font-size: 2rem;
    }
}
