@font-face {
    font-family: 'Open Sans';
    src: url('/fonts/opensans/OpenSans-VariableFont_wdth,wght.ttf') format('truetype-variations');
    font-weight: 100 900;
    font-style: normal;
}
@font-face {
    font-family: 'Open Sans';
    src: url('/fonts/opensans/OpenSans-Italic-VariableFont_wdth,wght.ttf') format('truetype-variations');
    font-weight: 100 900;
    font-style: italic;
}
/* Fallback für ältere Browser */
@font-face {
    font-family: 'Open Sans Fallback';
    src: url('/fonts/opensans/OpenSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Open Sans Fallback';
    src: url('/fonts/opensans/OpenSans-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'Open Sans Fallback';
    src: url('/fonts/opensans/OpenSans-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}
@font-face {
    font-family: 'Open Sans Fallback';
    src: url('/fonts/opensans/OpenSans-BoldItalic.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
}
@font-face {
    font-family: 'Raleway';
    src: url('/fonts/raleway/Raleway-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Raleway';
    src: url('/fonts/raleway/Raleway-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Open Sans', 'Open Sans Fallback', sans-serif;
    color: #2c3e50;
    margin: 0;
    padding-top: 80px; /* Platz für Header */
    padding-bottom: 80px; /* Platz für Footer mit Buttons */
}
a {
	color: #2c3e50;
	text-decoration: none;
}
a:hover {
	color: #405b5e;
	text-decoration: none;
}
header {
    font-family: 'Raleway', sans-serif;
    position: fixed;
    top: 0;
    width: 100%;
    height: 60px;
    background-color: #f1f1f1; /* Hellgrau */
    color: #405b5e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    z-index: 10;
}
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 60px;
    background-color: #f1f1f1; /* Hellgrau */
    color: #405b5e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9em;
    z-index: 10;
}
.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px; /* Abstand zwischen Text und Social Icons */
}

.social-icons {
    display: flex;
    gap: 10px; /* Abstand zwischen den Icons */
}

.social-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.2s;
}

.social-icon:hover {
    transform: scale(1.1); /* Leichter Hover-Effekt */
}
.footer-buttons {
    display: flex;
    margin-right: 10px;
}
.footer-buttons .cta-button {
    padding: 8px 12px;
    font-size: 0.8em;
    margin: 0 5px;
}
footer a {
    color: #405b5e;
    text-decoration: none;
    margin: 0 5px;
}
footer a:hover {
    color: #483d32;
}
.cta-buttons {
    display: flex;
    margin-top: 20px;
}
.cta-button {
    background-color: #ec671b;
    color: #ffffff;
    padding: 8px 15px;
    font-size: 0.9em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

.cta-button:hover {
    background-color: #405b5e; /* Grüner Hintergrund im Hover */
    color: #ffffff; /* Weiße Schrift im Hover */
}
/* Container Styles */
.container {
    max-width: 800px;
    padding: 20px 20px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin: 20px auto;
}
h1, h2 {
    font-family: 'Raleway', sans-serif;
}
h1 {
    color: #405b5e;
    font-size: 2.5em;
}
h2 {
    color: #2c3e50;
    font-size: 1.8em;
    margin-top: 30px;
}
p {
    font-size: 1.2em;
    line-height: 1.6;
    color: #2c3e50;
    margin-top: 25px;
    margin-bottom: 25px;
}
.benefits-list {
    text-align: left;
    margin: 20px auto;
    max-width: 600px;
    color: #2c3e50;
}
.benefits-list li {
    margin: 10px 0;
    line-height: 1.6;
    color: #2c3e50;
}
.totop-button {
    position: fixed;
    bottom: 50px;
    padding: 10px 20px 5px 20px;
	right: 75px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    display: none; /* Versteckt den Button zu Beginn */
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2em;
    z-index: 10;
    transition: background-color 0.3s;
}

.totop-button.show {
    display: flex; /* Zeigt den Button an, wenn gescrollt */
}

.totop-button:hover {
    background-color: #7d6f61;
}