:root {
    --red: #da1f3d;
    --gray-light: #f6f6f6;
    --gray-medium: #000000;
    --black: #000000;
    --text-dark: #1A1A1A;
    --white: #FFFFFF;
    
}

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

body {
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);

    overflow-x: hidden;
}


header {
    border-bottom: 5px solid var(--red);
    background: var(--white);
    position: relative;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    flex-wrap: nowrap;
}

.branding {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.logo-link:hover {
    transform: scale(1.03);
}

.logo-img {
    height: 60px;
    width: auto;
    display: block;
}

.title-group h1 {
    font-size: 20px;
    text-transform: uppercase;
    color: var(--black);
    letter-spacing: 0.5px;
}

.title-group p {
    font-size: 13px;
    color: var(--gray-medium);
    font-weight: 600;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--black);
    cursor: pointer;
    padding: 5px;
    flex-shrink: 0;
}


.main-nav>ul {
    display: flex;
    list-style: none;
    gap: 5px;
}

.nav-item {
    position: relative;
}

nav a {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    transition: all 0.2s;

    white-space: nowrap;
}

nav a:hover,
.nav-item:hover>a {
    background: var(--gray-light);
    color: var(--red);
}


.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 260px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    border-top: 3px solid var(--red);
    list-style: none;
    flex-direction: column;
}

.dropdown li {
    border-bottom: 1px solid var(--gray-light);
    display: block;
    width: 100%;
}

.dropdown a {
    padding: 12px 20px;
    text-transform: none;
    font-size: 14px;
    font-weight: 500;
}

.nav-item:hover .dropdown {
    display: block;
}

.breadcrumb-nav {
    background: var(--gray-light);
    padding: 15px 0;
    font-size: 12px;
    color: var(--gray-medium);
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumb-nav a {
    color: var(--red);
    text-decoration: none;
}

.page-title-section {
    padding: 50px 0 20px;
}

.page-title-section h2 {
    font-size: 34px;
    color: var(--black);
    text-transform: uppercase;
    border-left: 8px solid var(--red);
    padding-left: 20px;
    letter-spacing: -0.5px;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.grid-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    padding: 40px 0 80px;
}

h3 {
    font-size: 20px;
    text-transform: uppercase;
    margin-top: 30px;
    margin-bottom: 20px;
    color: var(--black);
    border-bottom: 2px solid var(--red);
    display: inline-block;
    padding-bottom: 5px;
}

p {
    margin-bottom: 20px;
    font-size: 15px;
    color: #333;
    text-align: justify;
}

.benefit-box {
    background: var(--gray-light);
    padding: 20px;
    border-left: 4px solid var(--gray-medium);
    margin-bottom: 30px;
}

.content-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 30px;
    border-bottom: 4px solid var(--red);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}


.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-box {
    border: 1px solid var(--gray-light);
    padding: 35px;
    background-color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.sidebar-box h4 {
    text-transform: uppercase;
    font-size: 15px;
    margin-bottom: 25px;
    color: var(--black);
    border-left: 4px solid var(--red);
    padding-left: 12px;
}

.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    width: 100%;
}

.contact-row svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: var(--red);
    stroke-width: 2;
    flex-shrink: 0;
}

.text-red {
    color: var(--red);
    font-weight: 500;
    text-decoration: none;
    word-break: break-word;
}

.opening-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    color: var(--text-dark);
}

.opening-table td {
    padding: 6px 0;
    border-bottom: 1px dashed var(--gray-light);
}

.opening-table tr:last-child td {
    border-bottom: none;
}

.opening-table td.time-col {
    text-align: right;
    font-weight: 600;
}

.info-box {
    background: var(--gray-light);
    padding: 25px;
    border-left: 4px solid var(--red);
    margin: 30px 0;
}

.faq-item {
    margin-bottom: 20px;
    background: #fff;
    border: 1px solid #eee;
    padding: 15px;
}

.faq-question {
    font-weight: bold;
    color: var(--red);
    margin-bottom: 10px;
    display: block;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
}

.check-mark {
    color: var(--red);
    font-weight: bold;
}

.btn-action {
    display: block;
    background: var(--black);
    color: white;
    padding: 15px;
    text-decoration: none;
    font-weight: bold;
    font-size: 13px;
    text-transform: uppercase;
    text-align: center;
    margin-top: 15px;
    transition: 0.2s;
}

.btn-action:hover {
    background: var(--red);
}

footer {
    background: var(--white);
    color: var(--white);
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 13px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
}

.footer-col p,
.footer-col a {
    font-size: 14px;
    color: var(--black);
    text-decoration: none;
    margin-bottom: 10px;
    display: block;
    word-break: break-word;
}

.footer-gtue-link {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 10;
    display: block;
    transition: opacity 0.2s ease;
}

.footer-gtue-link:hover {
    opacity: 0.8;
}

.footer-gtue-logo {
    height: 250px;
    width: auto;
    display: block;
    border: none;
}

.copyright {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 20px;
    font-size: 11px;
    color: var(--gray-medium);
    text-align: center;
    margin-top: 40px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    padding-top: 50px; /* <--- Diese Zeile sorgt für den Abstand nach oben */
}





@media (max-width: 900px) {
    .header-container {
        flex-wrap: wrap;
        padding: 15px 20px;
    }

    .branding {
        gap: 10px;
        max-width: calc(100% - 40px);
    }

    .logo-img {
        height: 45px;
    }

    .title-group h1 {
        font-size: 16px;
    }

    .title-group p {
        font-size: 11px;
    }

    .page-title-section h2 {
        font-size: 24px;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        width: 100%;
        margin-top: 15px;
        background-color: var(--white);
        border-top: 1px solid var(--gray-light);
    }

    .main-nav.active {
        display: block;
    }

    .main-nav>ul {
        flex-direction: column;
        gap: 0;
    }

    .main-nav nav a {
        padding: 12px 0;
        border-bottom: 1px solid var(--gray-light);
        white-space: normal;
    }

    .dropdown {
        position: static;
        width: 100%;
        box-shadow: none;
        border-top: none;
        background-color: var(--gray-light);
        padding-left: 20px;
    }

    .grid-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 20px 0 40px;
    }

    .sidebar-box {
        padding: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-gtue-logo {
        height: 100px;
        opacity: 0.2;
    }


}


@media (max-width: 768px) {
    .footer-gtue-link {
        bottom: 35px !important;
        right: 15px !important;

        display: inline-block !important;
        padding: 8px !important;
        border-radius: 5px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
        z-index: 10;
    }

    .footer-gtue-logo {
        opacity: 1 !important;
        mix-blend-mode: normal !important;
        display: block;


        width: 150px !important;
        height: auto !important;/
    }
}