:root {
    --background: #f7f7e8;
    --dark-blue: #1e1e57;
    --gold: #ceb755;
    --text: #5e5843;
    --button-hover: #6d6b91;
    --errorcolor: #e20505;
}

body {
    font-family: 'Raleway', sans-serif;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 970px;
    width: 90%;
    margin: 0 auto;
    padding: 0;
}

header {
    text-align: center;
    padding: 20px 0;
}

.logo {
    max-width: 570px;
    width: 50%;
    height: auto;
}

h1 {
    font-family: 'Raleway', sans-serif;
    font-weight: bold;
    font-size: 1.1em;
    color: var(--dark-blue);
}

h2 {
    font-family: 'Lustria', serif;
    color: var(--dark-blue);
    font-weight: normal;
}

p {
    text-align: justify;
}

main {
    padding: 20px 0;
}

section {
    margin-bottom: 40px;
}

.expectations {
    background-color: var(--dark-blue);
    color: white;
    padding: 30px;
}

.expectations h2 {
    color: var(--gold);
    text-align: center;
    font-size: 1.1em;
}

.expectations ul {
    list-style-type: disc;
    padding-left: 20px;
    line-height: 1.8;
}

.expectations li {
    margin-bottom: 10px;
}

.flex-container {
    display: flex;
    gap: 40px;
}

.info-column {
    flex: 1;
}

.form-column {
    flex: 1;
}

form {
    background-color: white;
    border: 1px solid var(--gold);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

form h3 {
    color: black;
    text-align: center;
    margin-top: 0;
    font-weight: normal;
    font-size: 1em;
}

input, select {
    padding: 10px;
    border: 1px solid var(--gold);
    border-radius: 5px;
    width: 100%;
    box-sizing: border-box;
}

button {
    background-color: var(--dark-blue);
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 230px;
    margin: 0 auto;
}

button:hover {
    background-color: var(--button-hover);
}

.privacy-note {
    font-size: 0.85em;
    text-align: center;
    margin-top: 20px;
}

.footer-divider {
    width: 90%;
    height: 1px;
    background-color: #000;
    margin: 20px auto;
}

footer {
    padding: 20px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h3 {
    color: var(--dark-blue);
    font-family: 'Lustria', serif;
}

.form-group {
    margin-bottom: 15px;
}

.error-message {
    color: red;
    font-size: 0.8em;
    margin-bottom: 5px;
    display: none;
}


@media (max-width: 768px) {
    .container {
        width: 95%;
    }

    .flex-container {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-column {
        text-align: center;
    }

    .logo {
        width: 85%;
    }
}