:root {
    --primary-green: #2e7d32;
    --primary-green-hover: #1b5e20;
    --accent-orange: #f57c00;
    --accent-blue: #2475BA;
    --bg-light: #f8fafc;
    --surface-white: #ffffff;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --radius-md: 12px;
    --radius-lg: 16px;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.04);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.12);
    --header-height: 65px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.5;
    width: 100%;
    overflow-x: hidden;
}

.svg-icon {
    width: 20px;
    height: 20px;
    stroke-width: 2;
    stroke: currentColor;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
    vertical-align: middle;
}

/* HEADER & NAV */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: 1280px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.25rem;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.1rem;
}

.brand-logo .icon-box {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-blue));
    color: white;
    padding: 0.45rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link, .dropdown-btn {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 0.85rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit;
    width: 100%;
    text-align: left;
}

.nav-link:hover, .dropdown-btn:hover, .nav-link.active {
    color: var(--primary-green);
    background: rgba(46, 125, 50, 0.08);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background: var(--surface-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 0.5rem;
    list-style: none;
    display: none;
    flex-direction: column;
    gap: 0.2rem;
    z-index: 1100;
    margin-top: 0.25rem;
}

.dropdown-menu.show {
    display: flex;
}

.dropdown-item {
    padding: 0.65rem 0.85rem;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.88rem;
    font-weight: 500;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.dropdown-item:hover, .dropdown-item.active {
    background: var(--bg-light);
    color: var(--primary-green);
}

.menu-toggle {
    display: none;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 0.6rem;
    color: var(--text-dark);
    align-items: center;
    justify-content: center;
}

@media (max-width: 960px) {
    .menu-toggle { display: flex; }
    .nav-menu {
        display: none;
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));
        height: calc(100dvh - var(--header-height));
        background: var(--surface-white);
        flex-direction: column;
        align-items: stretch;
        padding: 1rem 1rem 3rem 1rem;
        overflow-y: auto;
        z-index: 999;
        border-top: 1px solid var(--border-color);
    }
    .nav-menu.active { display: flex; }
    .nav-link, .dropdown-btn { padding: 0.85rem 1rem; font-size: 1rem; background: rgba(0,0,0,0.02); }
    .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        background: var(--bg-light);
        margin: 0.25rem 0 0.5rem 0.75rem;
        padding: 0.25rem;
        border-left: 3px solid var(--primary-green);
        border-radius: 0 8px 8px 0;
    }
}

/* LAYOUT & INHALTE */
.page-hero {
    background: linear-gradient(135deg, #2475BA 0%, #1a598e 100%);
    color: white;
    padding: 3.5rem 1.25rem;
    text-align: center;
}

.page-hero h1 { font-size: 1.85rem; margin-bottom: 0.5rem; line-height: 1.2; font-weight: 700; }
.page-hero p { color: #f1f5f9; max-width: 650px; margin: 0 auto; font-size: 1.05rem; }

.container { max-width: 1200px; margin: 0 auto; padding: 2.5rem 1.25rem; }

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.card {
    background: var(--surface-white);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.card-icon.green { background: rgba(46, 125, 50, 0.1); color: var(--primary-green); }
.card-icon.orange { background: rgba(245, 124, 0, 0.1); color: var(--accent-orange); }
.card-icon.blue { background: rgba(36, 117, 186, 0.1); color: var(--accent-blue); }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.25rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    width: 100%;
    margin-top: 1rem;
}

.btn-primary { background: var(--primary-green); color: white; }
.btn-primary:hover { background: var(--primary-green-hover); }

.content-split { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; }

@media (min-width: 768px) {
    .content-split { grid-template-columns: 1fr 1fr; }
    .page-hero h1 { font-size: 2.5rem; }
    .btn { width: auto; }
}

.img-placeholder {
    width: 100%;
    min-height: 220px;
    background: #e2e8f0;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    border: 2px dashed #cbd5e1;
    padding: 1rem;
    text-align: center;
}





.site-footer {
    background: var(--surface-white);
    border-top: 1px solid var(--border-color);
    padding: 2rem 1.25rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.88rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    list-style: none;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.footer-links a { color: var(--text-muted); text-decoration: none; }



#copyzone{
	position:fixed;
	top:0px;
	left:0px;
	width:180px;
	padding:10px;
	border-top-left-radius:15px;
	border-bottom-right-radius:15px;
	background-color:#f3961d;
	color:#000000;
	box-shadow:#fff200 0px 0px 35px;
	font-family:"Orbitron-Bold";
	display:none;
	z-index:9999;
}

.showcase{
    color:#000000;
    border-width:3px;
    border-style:solid;
    background-color:#d6d6d6;
	word-wrap: break-word;
	padding: 10px;
	border-color: #bababa;
	box-shadow: #bababa 1px 2px 2px;