/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');

body {
    font-family: 'Lato', sans-serif;
    background-color: #afdbdc;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    text-align: center;
    padding: 40px 20px;
    background-color: #afdbdc;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header img {
    width: 150px;
    height: auto;
}

header h1 {
    margin: 20px 0 0;
    font-size: 2.5em;
    font-weight: 700;
    color: #333;
}

main {
    flex: 1;
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
}

section {
    margin-bottom: 40px;
}

h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #555;
    border-bottom: 2px solid #333;
    display: inline-block;
    padding-bottom: 5px;
}

p, ul, form {
    font-size: 1.2em;
    line-height: 1.6;
}

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

li {
    margin: 10px 0;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 5px;
    font-weight: 700;
}

input, textarea, button {
    margin-bottom: 20px;
    padding: 15px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: border-color 0.3s;
}

input:focus, textarea:focus {
    border-color: #333;
    outline: none;
}

button {
    background-color: #333;
    color: white;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #555;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
    font-size: 1em;
    position: relative;
    width: 100%;
}
