:root {
    /* Background Color */
    --col-bg1: #fafafa;
    --col-bg2: #ccddee;
    --col-bg3: #bbccdd;
    --col-bg4: #aabbcc;
    --col-bg5: #778899;
    /* Font Color */
    --col-font1: #000000;
}

img.logo {
    width: 222px;
    height: 125px;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: url(img/background.jpg);
}

header.top-logo {
    background: url(img/background_head.jpg);
    text-align: center;
    padding-top: 10px;
    border-bottom: 3px solid black;
}

header.TOP {
    background-color: var(--col-bg5);
    text-align: right;
    color: white;
    padding: 5px 10px 5px 0px;
    border-bottom: 3px solid black;
}

main {
    padding: 40px;
}

.BOX {
    background: var(--col-bg1);
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 8px;
    border-style: solid;
    border-color: var(--col-bg3);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 0 10px black;
}

.BOX h2 {
    margin-top: 0;
}

.BOX p {
    margin-bottom: 1em;
}

.BOX div {
    margin-bottom: 1em;
}

.services-li {
    margin-bottom: 1em;
}

.contact-wrapper {
    display: flex;
    justify-content: center;
}

.contact-box {
    background: var(--col-bg1);
    padding: 25px;
    width: 100%;
    border-radius: 8px;
    border-style: solid;
    border-color: var(--col-bg3);
    max-width: 400px;
    box-shadow: 0 0 10px black;
}

.contact-box h2 {
    text-align: center;
    margin-bottom: 20px;
}

.contact-box label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
}

.contact-box input,
.contact-box textarea {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

.contact-box textarea {
    resize: vertical;
    height: 10em;
}

.contact-box button {
    margin-top: 15px;
    width: 100%;
    padding: 10px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.contact-box button:hover {
    background-color: #555;
}

.language-selector a {
    color: white;
    text-decoration: none;
    margin-left: 10px;
    font-weight: bold;
}

.language-selector a:hover {
    text-decoration: underline;
}
