
@font-face {
    font-family: "Frutiger";
    src: url("fonts/ftr_.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Frutiger";
    src: url("fonts/ftb_.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Frutiger";
    src: url("fonts/fti_.ttf") format("truetype");
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: "Frutiger";
    src: url("fonts/ftbi.ttf") format("truetype");
    font-weight: 700;
    font-style: italic;
}
body {
    font-family: "Frutiger", Arial, sans-serif;
}

footer {
    /* neutralisieren, falls global Styles für "section, footer, ..." greifen */
    width: 100%;
    background: #e6e7e8;
    border-top: 1px solid #ccc;
    color: #000;
    font-family: "Frutiger", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    box-sizing: border-box;
    padding: 50px 70px;
    max-width: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    margin-bottom: -100px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1530px;
    margin: 0 auto;
    gap: 60px;
}

.footer-left,
.footer-right {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

footer h2 {
    font-size: 20px;
    color: #000;
    margin-bottom: 10px;
}

footer p {
    margin: 6px 0;
}

footer a {
    color: #128c46;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

html, body {
    margin: 0;
    padding: 0;
}


/* Responsive für mobile Geräte */
@media (max-width: 900px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-left,
    .footer-right {
        text-align: center;
    }
}

@media (max-width: 600px) {
    .hero {
        display: block;       /* Flex-Zentrierung deaktivieren */
        height: auto;         /* keine feste Höhe mehr */
        padding: 20px 20px 30px 20px;  /* nur normaler Innenabstand */
    }

    .hero-text {
        margin: 0;
        padding: 0;
        text-align: left;
    }
}
