/* lunchapp/static/css/styles.css */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background: #333;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}

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

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

.about-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1, h2 {
    color: #333;
}

footer {
    text-align: center;
    padding: 10px 0;
    background: #333;
    color: #fff;
    position: fixed;
    width: 100%;
    bottom: 0;
}

/* lunchapp/static/css/styles.css */
.help-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.help-container h1 {
    color: #333;
    text-align: center;
}

.help-container h2 {
    color: #555;
    margin-top: 30px;
}

.help-container h3 {
    color: #777;
    margin-top: 20px;
}

.help-container h4 {
    color: #888;
    margin-top: 15px;
}

.help-container ol, .help-container ul {
    margin-left: 20px;
}

.help-container p {
    margin: 10px 0;
}

.help-container a {
    color: #007BFF;
    text-decoration: none;
}

.help-container a:hover {
    text-decoration: underline;
}

/* lunchapp/static/css/styles.css */
.privacy-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.privacy-container h1 {
    color: #333;
    text-align: center;
}

.privacy-container h2 {
    color: #555;
    margin-top: 30px;
}

.privacy-container h3 {
    color: #777;
    margin-top: 20px;
}

.privacy-container ul, .privacy-container ol {
    margin-left: 20px;
}

.privacy-container p {
    margin: 10px 0;
}

.privacy-container a {
    color: #007BFF;
    text-decoration: none;
}

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

/* lunchapp/static/css/styles.css */
.terms-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.terms-container h1 {
    color: #333;
    text-align: center;
}

.terms-container h2 {
    color: #555;
    margin-top: 30px;
}

.terms-container h3 {
    color: #777;
    margin-top: 20px;
}

.terms-container ul, .terms-container ol {
    margin-left: 20px;
}

.terms-container p {
    margin: 10px 0;
}

.terms-container a {
    color: #007BFF;
    text-decoration: none;
}

.terms-container a:hover {
    text-decoration: underline;
}

/*Contact*/
.contact-container {
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.contact-container h2 {
    text-align: center;
    color: #333;
}

.contact-container label {
    font-weight: bold;
    display: block;
    margin-top: 10px;
    color: #333;
}

.contact-container input,
.contact-container textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.contact-container textarea {
    height: 150px;
    resize: none;
}

.contact-container button {
    width: 100%;
    padding: 10px;
    margin-top: 15px;
    background: #007BFF;
    color: white;
    border: none;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s;
}

.contact-container button:hover {
    background: #0056b3;
}