/* Globale Styles */
* {
    box-sizing: border-box;
}

/* Body-Styles */
html, body {
    margin: 0;
    padding: 0;
    border: 0;
    background-color: #d2dee6;
}

body {
    font-family: 'Arial', sans-serif;
    color: #000;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Layout-Styles */
.container {
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.content {
    flex: 1;
    display: flex;
    background-color: #d2dee6;
    margin: 0 auto;
    flex-direction: column;
    min-height: 200px;
    max-width: 1200px;
    width: 100%;
    padding: 20px;
}

/* Typografie-Styles */
h1 {
    font-size: 40px;
    color: #006db6;
    margin-bottom: 20px;
    text-align: center;
}

h2 {
    font-size: 25px;
    color: #2a7fb7;
    margin: 10px 0;
}

h3 {
    font-size: 15px;
    color: #000;
  	font-weight: normal;
}

/* Header-Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #006db6;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #d2dee6;
    border-bottom: 2px solid #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
}

header .logo img {
    height: 50px;
}

header nav {
    display: flex;
}

header nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

header nav ul li a:hover {
    color: #d2dee6;
}

/* Box-Container-Styles */
.box-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 20px;
}

.box-item {
    cursor: pointer;
    text-align: center;
    flex: 1;
    margin: 0 10px;
}

.box-item img {
    margin-bottom: 15px;
    width: 100%;
    max-width: 300px;
    height: auto;
}

/* Kontakt-Info-Styles */
.contact-info {
    background-color: #2a7fb7;
    color: #fff;
    padding: 10px;
    text-align: center;
    font-size: 12.5px;
    border-top: 1px solid #fff;
    display: flex;
    justify-content: center;
    gap: 5px;
    width: 100%;
}

.contact-info span {
    display: flex;
    align-items: center;
}

.contact-info .icon {
    margin-right: 5px;
}

.contact-info a {
    color: #fff;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Footer-Styles */
footer {
    background-color: #006db6;
    color: #fff;
    padding: 15px;
    text-align: center;
    font-size: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: auto;
    gap: 5px;
    width: 100%;
}

footer span, footer a {
    margin: 0 5px;
}

footer a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

footer a:hover {
    color: #d2dee6;
}

/* Element-Styles */
button {
    background-color: #006db6;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.3s;
}

button .icon {
    margin-right: 5px;
}

button:hover {
    background-color: #004a8b;
    transform: translateY(-2px);
}

/* Formular-Styles */
.label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input, select, textarea {
    font-family: 'Arial', sans-serif;
    width: 100%;
    padding: 10px;
    border: 1px solid #2a7fb7;
    border-radius: 5px;
}

input:focus, select:focus, textarea:focus {
    border-color: #006db6;
    outline: none;
}

.required {
    color: red;
    font-weight: bold;
    margin-left: 5px;
}

/* Zeilen-Styles */
.row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.row div {
    flex: 0 0 48%;
}

.row div.full-width {
    flex: 0 0 100%;
}

/* Box-Inhalt-Styles */
.box-content-hidden {
    display: none;
}

.box-content-visible {
    display: block;
    opacity: 1;
}

/* Formularlabel-Styles */
.form-label {
    display: flex;
    align-items: center;
}

.form-label i {
    margin-right: 5px;
}