@font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-color: #0069d9; /* Original Website Background (Bootstrap Primary slightly darker) */
    --primary-light: #e6f0f9;
    --secondary-color: #e67e22; /* Energetic Orange */
    --secondary-hover: #d35400;
    --text-color: #2c3e50;
    --text-muted: #7f8c8d;
    --bg-color: #f8fbfb; /* Very light cool grey/blue */
    --card-bg: #ffffff;
    --font-family: 'Nunito', system-ui, -apple-system, sans-serif;
    --border-radius: 12px;
    --box-shadow: 0 8px 30px rgba(0, 91, 159, 0.08);
}

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

body {
    font-family: var(--font-family);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

/* Header */
.site-header {
    background: var(--primary-color);
    box-shadow: 0 2px 15px rgba(0,0,0,0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.main-nav a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.05rem;
    transition: color 0.3s;
    padding: 0.5rem 0;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.main-nav a:hover {
    color: var(--primary-light);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border-radius: 50px; /* Pill shape for modern friendly look */
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: #fff;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

.btn-primary:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

.btn-outline {
    background-color: rgba(255,255,255,0.1);
    border: 2px solid #fff;
    color: #fff;
    backdrop-filter: blur(5px);
}

.btn-outline:hover {
    background-color: #fff;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    position: relative;
    background-color: var(--primary-color);
    color: #fff;
    padding: 8rem 0;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/images/kinder-konnen-an-rheuma-erkranken.png') center/cover no-repeat;
    opacity: 0.25;
    z-index: 0;
    mix-blend-mode: multiply;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* Icons */
.icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}
.icon-large {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    color: var(--primary-color);
    fill: var(--primary-color);
}

/* Sections */
section {
    padding: 5rem 0;
}

section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.2rem;
    color: var(--primary-color);
    font-weight: 800;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.card {
    background: var(--card-bg);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
    border-top: 4px solid transparent;
}

.card:hover {
    transform: translateY(-5px);
}

.card.primary-border {
    border-top-color: var(--primary-color);
}

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

.card h2, .card h3 {
    text-align: left;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--text-color);
}

.card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* Single Page Content */
.page-header {
    text-align: center;
    margin-bottom: 3rem;
}
.page-header .icon-large {
    margin: 0 auto 1rem;
}
.page-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 800;
}

.content-box {
    background: var(--card-bg);
    padding: 4rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.content-box h2 {
    text-align: left;
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-light);
    padding-bottom: 0.5rem;
}

.content-box h3 {
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: var(--text-color);
}

.content-box p {
    margin-bottom: 1.2rem;
    color: var(--text-muted);
}

.content-box ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    color: var(--text-muted);
}

.content-box li {
    margin-bottom: 0.5rem;
}

.content-box a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
}
.content-box a:hover {
    text-decoration: underline;
}

/* Footer */
.site-footer {
    background: var(--text-color);
    color: #fff;
    text-align: center;
    padding: 3rem 0;
    margin-top: 4rem;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

.footer-nav a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .site-header .container {
        flex-wrap: wrap;
        padding: 0.5rem 0;
    }
    
    .mobile-menu-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        width: 100%;
    }

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

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        margin-top: 1rem;
        padding-bottom: 1rem;
        text-align: center;
    }

    .main-nav a {
        display: block;
        padding: 0.8rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .main-nav li:last-child a {
        border-bottom: none;
    }

    .hero {
        padding: 5rem 0;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
    }

    .grid-2 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .content-box {
        padding: 2rem;
    }

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