* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 40px 20px;

    min-height: 100vh;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;

    font-family: Arial, sans-serif;
}

/* Allgemeine Abstände */
.header,
.logo,
.infobereich,
.angebote,
.weiterleitungen {
    width: 100%;
    max-width: 700px;
}

/* Überschrift */
.header {
    margin-bottom: 30px;
}

.header p {
    margin: 1rem 0;
    color: #c7a257;
}

/* Logo */
.logo {
    margin-bottom: 40px;
}

.logo img {
    display: block;
    width: 25%;
    max-width: 350px;
    height: auto;
    margin: 0 auto;
}

/* Haupt-Infobereich */
.infobereich {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
}

.infobereich > p {
    margin: 0;
}

/* Unterbereiche */
.angebote,
.weiterleitungen {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.angebote p,
.weiterleitungen p {
    margin: 0;
}

/* Buttons */
button {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;

    font-size: 16px;
    cursor: pointer;

    transition: opacity 0.2s ease;
}

button:hover {
    opacity: 0.8;
}

/* Optional: Abstand zwischen den drei Kontakt-Buttons */
.btn_mail,
.btn_whatsapp,
.btn_insta {
    margin: 0;
}

/* Impressum */
.impressum_ueberschrift{
    font-weight: bold;
}

/* Datenschutz */
.datenschutz-block strong {
    font-weight: 600;
}

/* Impressum & Datenschutz */
.datenschutz,
.impressum {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.datenschutz-block,
.impressum-block {
    margin-bottom: 30px;
}

.datenschutz-block p,
.impressum-block p {
    margin: 0 0 12px 0;
    line-height: 1.6;
    text-align: start;
}

.datenschutz-block p:last-child,
.impressum-block p:last-child {
    margin-bottom: 0;
}

.datenschutz a,
.impressum a {
    color: inherit;
}

/* Footer-Bereich */
.footer {
    width: 100%;
    margin-top: 50px;
    padding: 20px 0;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;

    background: #c7a257;
    font-size: 14px;
}

.footer a {
    color: inherit;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}