body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom, #1a3a5a, #0c1f2c);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: #333;
}
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    flex-grow: 1;
}
header {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.logo {
    max-height: 60px;
    width: auto;
}
h1 {
    color: #1a3a5a;
    text-align: center;
    margin-bottom: 20px;
}
.form-container {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-top: 20px;
}
form {
    display: flex;
    flex-direction: column;
}
label {
    margin-top: 10px;
    color: #1a3a5a;
    font-weight: bold;
}
input, select {
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #2c5282;
    border-radius: 4px;
    background-color: #f0f4f8;
    color: #333;
}
input[type="submit"] {
    background-color: #2c5282;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 4px;
    margin-top: 20px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}
input[type="submit"]:hover {
    background-color: #3a6ea5;
}
.success-message {
    background-color: #4CAF50;
    color: white;
    padding: 10px;
    border-radius: 4px;
    margin-top: 20px;
    text-align: center;
}
.slogan {
    text-align: center;
    color: #1a3a5a;
    font-style: italic;
    margin-top: 10px;
}
.info {
    text-align: center;
    color: #1a3a5a;
    margin-top: 10px;
    font-weight: bold;
}
footer {
    background-color: #0c1f2c;
    color: white;
    padding: 20px 0;
    margin-top: 20px;
}
.footer-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.footer-links, .footer-contact {
    margin: 10px;
}
.footer-links a, .footer-contact a {
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
}
.footer-links a:hover, .footer-contact a:hover {
    text-decoration: underline;
}
button {
    background-color: green;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 4px;
    margin-top: 20px;
    cursor: pointer;
    font-size: 16px;
}
button:hover {
    background-color: #0c1f2c;
}
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #f1f1f1;
    padding: 10px;
    text-align: center;
    display: none;
}
.cookie-banner button {
    margin-left: 10px;
    padding: 5px 10px;
    background-color: #8B4513;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}