:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --gray-light: #f5f5f5;
    --gray-medium: #e0e0e0;
    --gray-dark: #333333;
    --spacing-small: 1rem;
    --spacing-medium: 2rem;
    --spacing-large: 4rem;
    --border-radius: 4px;
    --transition-speed: 0.3s;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

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

body {
    cursor: none;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--primary-color);
    background-color: var(--secondary-color);
    min-height: 100vh;
}

/* Container für alle Sektionen */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-medium);
    overflow: hidden;
}

/* Header & Navigation */
.header {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 2rem;
    z-index: 1000;
    background-color: var(--primary-color);
}

/* Cursor Styles für den Header */
body .header {
    cursor: none;
}

body .header ~ .custom-cursor,
body .header:hover ~ .custom-cursor,
body .header *:hover ~ .custom-cursor {
    background-color: var(--secondary-color) !important;
}

body .header ~ .cursor-border,
body .header:hover ~ .cursor-border,
body .header *:hover ~ .cursor-border {
    border-color: var(--secondary-color) !important;
}

.header .logo,
.header .nav-links a {
    color: var(--secondary-color);
    cursor: none;
}

/* Mobile Toggle Button */
.mobile-nav-toggle { display: none; }
.mobile-nav-toggle button {
    background: transparent;
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    padding: 6px 10px;
    border-radius: 6px;
}
.mobile-nav-toggle button span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--secondary-color);
    margin: 4px 0;
}

/* Spezifische Styles für den Hero-Header */
.hero-section .header,
.product-hero .header {
    background-color: transparent;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--secondary-color);
    text-decoration: none;
}

.logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.footer-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    margin-bottom: var(--spacing-small);
}

.logo svg {
    width: 24px;
    height: 24px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 400;
    transition: opacity var(--transition-speed);
}

.nav-links a:hover {
    opacity: 0.8;
}

.nav-links .cta-button {
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    background-color: transparent;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.nav-links .cta-button:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.main-cta-button {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    border: 1px solid var(--secondary-color);
    background-color: transparent;
    color: var(--secondary-color);
    border-radius: 4px;
    transition: all var(--transition-speed);
    text-decoration: none;
}

.main-cta-button:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.main-cta-button.filled {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.main-cta-button.filled:hover {
    background-color: transparent;
    color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Main Content */
main {
    position: relative;
    background-color: var(--secondary-color);
    overflow: hidden;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8rem var(--spacing-medium) 2rem;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-section .company-name {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.hero-section h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: var(--spacing-medium);
    font-weight: 600;
}

.hero-section .subtitle {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-large);
    opacity: 0.9;
    line-height: 1.6;
    font-weight: 300;
}

/* Shop-Hero Variante: etwas kompakter und nach unten versetzt */
.shop-hero {
    min-height: 16vh;
    padding: 7rem var(--spacing-medium) 1.25rem;
}
.shop-hero .company-name { font-size: .8rem; letter-spacing: 2px; }
.shop-hero h1 { font-size: 2rem; }
.shop-hero .subtitle { display: none; }
.shop-hero .hero-content { padding-top: 1.25rem; }

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    cursor: pointer;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* About Section */
#ueber-uns {
    position: relative;
    background-color: var(--secondary-color);
    z-index: 2;
}

.about-section {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-large);
    background-color: var(--secondary-color);
    position: relative;
    z-index: 2;
    padding: var(--spacing-large) var(--spacing-medium);
}

.about-content {
    background-color: var(--secondary-color);
    padding-right: var(--spacing-large);
}

.about-content h2 {
    text-align: left;
    margin-bottom: var(--spacing-medium);
    position: relative;
    z-index: 2;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-medium);
    background-color: var(--secondary-color);
}

.feature-card {
    background-color: var(--gray-light);
    padding: var(--spacing-medium);
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 40px;
    height: 40px;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin: 0;
}

/* Services Section */
.services-section {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: var(--spacing-large) 0;
    margin: var(--spacing-large) calc(var(--spacing-medium) * -1);
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-medium);
}

.services-header {
    text-align: center;
    margin-bottom: var(--spacing-large);
}

.services-header h2 {
    color: var(--secondary-color);
}

.services-header p {
    max-width: 600px;
    margin: var(--spacing-medium) auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-medium);
}

.service-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: var(--spacing-medium);
    border-radius: var(--border-radius);
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: var(--spacing-small);
}

.service-card h3 {
    color: var(--secondary-color);
    margin: var(--spacing-small) 0;
}

.service-card p {
    color: var(--gray-light);
    margin: 0;
}

/* Process Timeline */
.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--primary-color);
    transform: translateX(-50%);
}

.process-step {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 100px 0;
    opacity: 1;
    transform: none;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.process-content {
    width: 45%;
    padding: 30px;
    background-color: var(--gray-light);
    border-radius: var(--border-radius);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.process-content::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.process-step:nth-child(odd) .process-content::after {
    right: -60px;
    transform: translateY(-50%);
}

.process-step:nth-child(even) .process-content::after {
    left: -60px;
    transform: translateY(-50%);
}

.process-content h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.process-content p {
    margin: 0;
    color: var(--gray-dark);
}

/* Process Icons */
.process-icon {
    width: 48px;
    height: 48px;
    margin-bottom: var(--spacing-small);
    color: var(--primary-color);
}

.process-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Custom Cursor */
.custom-cursor {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 13000;
    transform: translate(-50%, -50%);
    will-change: left, top;
    transition: background-color 0.3s;
}

.cursor-border {
    width: 24px;
    height: 24px;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 12999;
    transform: translate(-50%, -50%);
    will-change: left, top;
    transition: border-color 0.3s;
}

/* Contact Section */
.section#kontakt {
    padding: var(--spacing-large) var(--spacing-medium);
}

.section#kontakt h2 {
    margin-bottom: 2.5rem;
    font-size: 2.5rem;
    position: relative;
    text-align: center;
}

.section#kontakt h2::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--primary-color);
}

.contact-description {
    max-width: 800px;
    margin: 2rem auto;
    color: var(--gray-dark);
    text-align: center;
}

.contact-container {
    max-width: 1200px;
    margin: 3rem auto;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 2rem;
    padding: 0 1rem;
}

.contact-info {
    background-color: var(--gray-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: left;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.contact-info-item svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--primary-color);
}

.contact-info-content {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.contact-info-label {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-info-value {
    color: var(--gray-dark);
    line-height: 1.5;
}

.contact-form {
    background-color: #fff;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    text-align: left;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    text-align: left;
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--gray-dark);
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--gray-medium);
    border-radius: var(--border-radius);
    background-color: #fff;
    font-family: inherit;
    font-size: 1rem;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.submit-button {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    margin-top: 1rem;
}

.submit-button svg {
    width: 20px;
    height: 20px;
    transform: rotate(-45deg);
}

.submit-button:hover {
    background-color: var(--gray-dark);
}

/* Footer */
.footer {
    background-color: #111;
    color: #fff;
    padding: var(--spacing-large) var(--spacing-medium) 0.5rem;
    cursor: none;
    position: relative;
    z-index: 1;
}

.footer *,
.footer a {
    cursor: none;
}

.footer .custom-cursor {
    background-color: var(--secondary-color);
}

.footer .cursor-border {
    border-color: var(--secondary-color);
}

.footer:hover ~ .custom-cursor {
    background-color: var(--secondary-color);
}

.footer:hover ~ .cursor-border {
    border-color: var(--secondary-color);
}

.footer *:hover ~ .custom-cursor {
    background-color: var(--secondary-color) !important;
}

.footer *:hover ~ .cursor-border {
    border-color: var(--secondary-color) !important;
}

/* Cursor-Farbe im Warenkorb-Dropdown (heller Hintergrund => schwarzer Cursor) */
.cart-dropdown ~ .custom-cursor,
.cart-dropdown.show ~ .custom-cursor,
.cart-dropdown *:hover ~ .custom-cursor {
    background-color: var(--primary-color) !important;
}
.cart-dropdown ~ .cursor-border,
.cart-dropdown.show ~ .cursor-border,
.cart-dropdown *:hover ~ .cursor-border {
    border-color: var(--primary-color) !important;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-large);
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: var(--spacing-medium);
}

.footer-section p {
    color: #888;
    margin-bottom: var(--spacing-medium);
    line-height: 1.6;
}

.footer-section a {
    display: block;
    color: #888;
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: color var(--transition-speed);
}

.footer-section a:hover {
    color: #fff;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: #888;
    transition: color var(--transition-speed);
}

.social-links a:hover {
    color: #fff;
}

.footer-bottom {
    margin-top: 1rem;
    padding-top: 0.5rem;
    padding-bottom: 0;
    border-top: 1px solid #333;
    text-align: center;
    color: #888;
}

.footer-bottom p {
    margin-bottom: 0;
}

.footer-bottom div {
    margin-bottom: 0;
    padding-bottom: 0;
}

.footer-bottom a {
    color: #888;
    text-decoration: none;
    margin: 0 0.5rem;
    transition: color var(--transition-speed);
}

.footer-bottom a:hover {
    color: #fff;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .container, .nav-container, .footer-content {
        max-width: 1140px;
    }
}

@media (max-width: 1200px) {
    .container, .nav-container, .footer-content {
        max-width: 960px;
        padding: 0 var(--spacing-medium);
    }

    .hero-section h1 {
        font-size: 3rem;
    }

    .about-section, .contact-container {
        gap: var(--spacing-medium);
    }
}

@media (max-width: 992px) {
    :root {
        --spacing-large: 3rem;
        --spacing-medium: 1.5rem;
    }

    .container, .nav-container, .footer-content {
        max-width: 720px;
    }

    .hero-section {
        padding: 6rem var(--spacing-medium) 2rem;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section .subtitle {
        font-size: 1.1rem;
    }

    .about-section {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-content {
        padding-right: 0;
    }

    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-info {
        max-width: 600px;
        margin: 0 auto;
    }

    .process-timeline {
        padding: 0 var(--spacing-medium);
    }

    .process-step {
        margin: 4rem 0;
    }
}

@media (max-width: 768px) {
    .container, .nav-container, .footer-content {
        max-width: 540px;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--primary-color);
        display: none;
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 1.25rem 1.25rem;
        border-top: 1px solid rgba(255,255,255,0.15);
    }
    .nav-links.show { display: flex; }
    .mobile-nav-toggle { margin-left: 1rem; display: block; }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section .subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        padding: 0 1rem;
    }

    .timeline-line {
        left: -8px;
    }

    .process-step {
        flex-direction: column !important;
        margin: 3rem 0;
        padding-left: 15px;
    }

    .process-content {
        width: 100%;
        margin-left: 0;
    }

    .process-content::after {
        left: -50px !important;
        width: 16px;
        height: 16px;
    }

    .process-step:nth-child(even) {
        flex-direction: column !important;
    }

    .process-step:nth-child(even) .process-content {
        margin-left: 0;
    }

    .process-step:nth-child(even) .process-content::after {
        left: -50px !important;
        right: auto;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-medium);
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    :root {
        --spacing-large: 2rem;
        --spacing-medium: 1rem;
    }

    .container, .nav-container {
        padding: 0 1rem;
    }

    .hero-section {
        padding: 5rem 1rem 2rem;
    }

    .hero-section h1 {
        font-size: 1.75rem;
    }

    .section h2 {
        font-size: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-info-content {
        align-items: center;
    }

    .process-timeline {
        padding: 0 1rem;
    }

    .timeline-line {
        left: -8px;
    }

    .process-step {
        padding-left: 15px;
    }

    .process-content::after {
        left: -50px !important;
        width: 12px;
        height: 12px;
    }
}

/* Landscape-Orientierung für Mobilgeräte */
@media (max-height: 600px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding: 4rem var(--spacing-medium) 2rem;
    }
}

/* Hohe Auflösungen */
@media (min-width: 1400px) {
    .container, .nav-container, .footer-content {
        max-width: 1320px;
    }

    .hero-section h1 {
        font-size: 4rem;
    }

    .hero-section .subtitle {
        font-size: 1.4rem;
    }
}

/* Unterstützung für Dark Mode */
@media (prefers-color-scheme: dark) {
    .custom-cursor {
        background-color: var(--secondary-color);
    }

    .cursor-border {
        border-color: var(--secondary-color);
    }
}

/* Print-Styles */
@media print {
    .custom-cursor,
    .cursor-border {
        display: none;
    }

    .hero-section,
    .services-section {
        background: none;
        color: var(--primary-color);
    }

    .footer {
        background: none;
        color: var(--primary-color);
    }
}

/* Reduzierte Bewegung für Barrierefreiheit */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* Prozess-Sektion Styles */
#prozess {
    text-align: center;
}

#prozess h2 {
    margin-bottom: 2.5rem;
}

#prozess .section-subtitle {
    max-width: 800px;
    margin: 0 auto var(--spacing-large);
}

.section {
    text-align: center;
}

.section h2 {
    margin-bottom: 2.5rem;
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--primary-color);
}

/* Rechtliche Seiten */
.legal-section {
    padding-top: 120px;
    background-color: var(--secondary-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Cursor für rechtliche Seiten */
.legal-section main ~ .custom-cursor {
    background-color: var(--primary-color) !important;
}

.legal-section main ~ .cursor-border {
    border-color: var(--primary-color) !important;
}

/* Weißer Cursor nur für den Header */
.legal-section .header ~ .custom-cursor {
    background-color: var(--secondary-color) !important;
}

.legal-section .header ~ .cursor-border {
    border-color: var(--secondary-color) !important;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--spacing-large) var(--spacing-medium);
    flex: 1;
    color: var(--primary-color);
}

/* Rechtliche Seiten */
.legal-page .custom-cursor,
.legal-page .cursor-border {
    transition: background-color 0.3s, border-color 0.3s;
}

.legal-page .custom-cursor {
    background-color: var(--primary-color);
}

.legal-page .cursor-border {
    border-color: var(--primary-color);
}

/* Header und Footer auf rechtlichen Seiten */
.legal-page .header .custom-cursor,
.legal-page .footer .custom-cursor {
    background-color: var(--secondary-color);
}

.legal-page .header .cursor-border,
.legal-page .footer .cursor-border {
    border-color: var(--secondary-color);
}

.legal-section {
    padding-top: 120px;
    background-color: var(--secondary-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--spacing-large) var(--spacing-medium);
    flex: 1;
    color: var(--primary-color);
    position: relative;
    z-index: 2;
}