/* Reset some default styles */
h1, h2 {
    font-family: 'Montserrat', sans-serif;
}

.logo {
    max-width: 100px; /* Adjust the maximum width as needed */
    height: auto;
    float: right; /* Float the logo to the right side */
    margin-left: 20px; /* Add some margin to separate it from the header text */
}

body, p, ul, li, label, input, textarea, form {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    padding: 20px;
}

header {
    text-align: center;
    background-color: #073070; /* Header background color */
    color: #fff;
    padding: 20px;
}

header h1 {
    font-size: 36px;
}

header p {
    font-size: 18px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-text {
    flex-grow: 1;
    text-align: left;
}

.logo {
    max-width: 100px; /* Adjust the maximum width as needed */
    height: auto;
    margin-left: 20px; /* Add some margin to separate it from the header text */
}

section {
    margin: 20px 0;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

ul {
    list-style-type: disc;
    margin-left: 20px;
    overflow: hidden;
}

li {
    margin-bottom: 10px;
}

.testimonial {
    margin: 20px 0;
}

footer {
    text-align: center;
    background-color: #073070; /* Footer background color (can be the same or different) */
    color: #fff;
    padding: 10px 0;
}

footer a {
    color: #fff; /* Change the color to your desired color */
    text-decoration: none; /* Remove underline if needed */
}

footer a:hover {
    text-decoration: underline; /* Add underline on hover if desired */
}

.contact-section {
    background-color: #f4f4f4;
    padding: 20px;
    margin: 20px 0;
}

.contact-form {
    width: 50%;
    margin: 0 auto;
    background: #ffffff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    font-size: 24px; /* Default font size for h2 */
}

/* Media query for smaller screens */
@media screen and (max-width: 768px) {
    .contact-form h2 {
        font-size: 20px; /* Adjust font size for smaller screens */
    }
}

label {
    display: block;
    margin: 10px 0;
    color: #333;
}

input[type="text"],
input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    height: 40px; /* Adjust the height as needed for one line */
}

textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    height: 100px; /* Adjust the height as needed */
}

input[type="submit"] {
    background: #073070;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

input[type="submit"]:hover {
    background: #073070;
}

#uebermich {
    display: flex;
    flex-wrap: wrap;
}

#uebermich h2 {
    order: 1;
    grid-row: 1; 
    margin-bottom: 20px; 
}

#uebermich .text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    order: 2;
}

.text-container {
    flex: 1;
    max-width: 600px; 
    margin-right: 20px; 
}

.image-container {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

div.fill-screen {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    text-align: center;
}

img.make-it-fit {
    max-width: 99%;
    max-height: 99%;
}

.Photo {
    max-width: 50%;
    height: auto;
    display: block;
}

.btn-impressum {
    background-color: #073070; 
    color: #ffffff; 
    border: none; 
    border-radius: 5px; 
    padding: 10px 20px; 
    font-size: 16px; 
    cursor: pointer;
    transition: background-color 0.3s ease; 

}
.btn-impressum:hover {
    background-color: #001f3f; 
    color: #ffffff; 
} 

@media screen and (max-width: 600px) {
    #uebermich .text-container {
        margin-right: 0;
        max-width: none;
    }

    .Photo {
        order: -1;
        max-width: 80%;
    }
}


.btn-impressum {
    background-color: #073070; /* Deep blue background color */
    color: #ffffff; /* White text color */
    border: none; /* Remove the button border */
    border-radius: 5px; /* Rounded corners for the button */
    padding: 10px 20px; /* Adjust padding as needed */
    font-size: 16px; /* Adjust font size as needed */
    cursor: pointer;
    transition: background-color 0.3s ease; /* Smooth transition for background color change */
}

.btn-impressum:hover {
    background-color: #001f3f; /* Darker blue background color on hover */
    color: #ffffff; /* White text color on hover */
}



/* 
#uebermich {
    display: flex;
    flex-wrap: wrap;
}

#uebermich h2 {
    grid-row: 1; 
    margin-bottom: 20px; 
}

#uebermich .text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-container {
    flex: 1;
    max-width: 600px; 
    margin-right: 20px; 
}

.image-container {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.Photo {
    max-width: 50%;
    height: auto;
    display: block;
}

.btn-impressum {
    background-color: #073070; 
    color: #ffffff; 
    border: none; 
    border-radius: 5px; 
    padding: 10px 20px; 
    font-size: 16px; 
    cursor: pointer;
    transition: background-color 0.3s ease; 

}
.btn-impressum:hover {
    background-color: #001f3f; 
    color: #ffffff; 
} */



 /* .Photo {
    max-width: 25%; 
    height: 5%; 
    display: block; 
    margin: 0 auto; 
} */
