body {
    font-family: 'Crimson Text', serif;
    background-color: #f7f7f7;
    color: black;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 800px; /* Maximalbreite */
    padding: 0px; /* Abstand zum Rand */
    box-sizing: border-box; /* Damit Padding nicht die Gesamtbreite beeinflusst */
}

header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    background-color: white;
    position: sticky;
    top: 0;
    box-shadow: 0 0 4px #D0D0D0;
    padding-bottom: 20px;
}
.logo {
    width: 20%;
}
.logo img {
    max-width: 350px;
}

nav a {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    color: #004650;
    text-decoration: none;
    margin: 20px 30px 0px 0px;
    transition: color 0.3s;
}
nav a:hover {
    color: #c3afeb;
}

a {
  color: #004650;
  text-decoration: none;
  transition: color 0.3s;
}
a:hover {
  color: #c3afeb;
}

.section {
    padding: 30px 30px 0px 30px;
    scroll-margin-top: 140px;
}

h2 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    color: #004650;
}
h3 {
    font-family: 'Work Sans', sans-serif;
    font-weight: initial;
    font-size: 1em;
    color: #004650;
}

.quote-box {
    display: flex;
    align-items: center;
    background-color: white;
    padding: 20px 20px 10px 20px;
    border-left: 10px solid #004650;
    box-shadow: 0 0 4px #D0D0D0;
}
.quote-text {
    font-style: italic;
    flex: 1;
    padding-right: 60px;
}
.quote-image {
    width: 30%;
    max-width: 200px;
}
.quote-image img {
    width: 100%;
    box-shadow: 0 0 4px #D0D0D0;
}
.quote-image-caption
{
    font-size: 0.5em;
    padding: 0px:
    margin: 0px;
    text-align: center;
    color: #D0D0D0;
}

.offer-box {
    background-color: white;
    padding: 10px 20px 10px 20px;
    border-left: 10px solid #deff00;
    box-shadow: 0 0 4px #D0D0D0;
}
.offer-list-container {
    display: flex;
    justify-content: flex-start;
    gap: 10%;
    flex-wrap: wrap;
}
.offer-list {
    width: 30%;
    min-width: 200px;

}

.contact-box {
    background-color: white;
    padding: 10px 20px 10px 20px;
    border-left: 10px solid #c3afeb;
    box-shadow: 0 0 4px #D0D0D0;
}

footer {
    margin-top: 200px;
    font-family: 'Work Sans', sans-serif;
    text-align: center;
    font-size: 0.7em;
    font-weight: normal;
    background-color: #D0D0D0;
    padding: 20px;
    box-shadow: 0 0 4px #D0D0D0;
}
footer a {
    /* color: white; */
}
footer a:hover {
    /* color: #004650; */
}
