/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Futura, bold;
    background-color: #ECF1FA;
}
/* Header */
.header {
    background-color: #162A70;
    padding: 0;
    position: relative;
}
.nav-bar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 10px 40px;
    position: relative;
    min-height: 120px;
}
.logo {
    width: 100px;
    height: 100px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 40px;
    transform: translateY(-50%);
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    transition: transform 0.3s ease;
}
.logo img {
    width: 90px;
    height: 90px;
    align-items: center;
}
.logo:hover {
    transform: translateY(-50%) scale(1.05);
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}
.nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
}
.nav-menu a:hover {
    text-decoration: underline;
}
/* Hero Section */
.hero-section {
    background-image: url('../img/rollstuhl-bild.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 300px;
    display: flex;
    align-items: center;
    padding: 0 40px;
    position: relative;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 74, 139, 0.3);
    z-index: 1;
}
.hero-title {
    position: relative;
    z-index: 2;
    background-color: rgba(74, 144, 226, 0.9);
    color: white;
    padding: 20px 40px;
    font-size: 48px;
    font-weight: bold;
    margin-left: auto;
    margin-right: 100px;
}
/* Main Content */
.main-content {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 40px;
    line-height: 1.6;
}
.section {
    margin-bottom: 40px;
}
.section h2 {
    color: #000000;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: bold;
}
.section h3 {
    color: #000000;
    font-size: 18px;
    margin: 20px 0 10px 0;
    font-weight: bold;
}
.section p {
    color: #000000;
    margin-bottom: 15px;
    font-size: 14px;
}
.contact-info p {
    margin-bottom: 5px;
}
.placeholder-text {
    color: #000000;
}
.Vorsitzender {
    color: #000000;
    margin-bottom: 15px;
    font-size: 14px;
}
/* Footer */
.footer {
    background-color: #162A70;
    color: white;
    padding: 40px;
    margin-top: 80px;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}
.footer-column {
    flex: 1;
    margin-right: 40px;
}
.footer-column:last-child {
    margin-right: 0;
}
.footer-column h4 {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: bold;
}
.footer-column p {
    font-size: 14px;
    line-height: 1.4;
}
.footer-links {
    text-align: right;
}
.footer-links a {
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
}
.footer-links a:hover {
    text-decoration: underline;
}
/* Responsive Design */
@media (max-width: 768px) {
    .nav-bar {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        justify-content: center;
        min-height: auto;
    }
    
    .logo {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin-bottom: 20px;
    }
    
    .logo:hover {
        transform: scale(1.05);
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .hero-title {
        font-size: 36px;
        margin: 0;
        text-align: center;
    }
    
    .main-content {
        padding: 0 20px;
        margin: 40px auto;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-links {
        text-align: left;
    }
}