* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    background-color: #ffffff;
}

body {
    background-color: #ffffff;
}

.layout-body {
    background-color: #ffffff;
    color: var(--color-text-primary);
    line-height: 1.6;
}

.link-standard {
    color: var(--color-brand-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.link-standard:hover {
    color: var(--color-brand-accent);
    text-shadow: var(--glow-primary);
}

/* Verhindert Umbrüche bei wichtigen Wörtern wie "Waschmaschine" */
.no-break-word {
    white-space: nowrap !important;
    display: inline !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
}
