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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Header & Navigation */
header {
    background-color: #f5f5f5;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #F5B041;
    text-decoration: none;
}

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

.nav-links a {
    text-decoration: none;
    color: #555;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #F5B041;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #555;
}

/* Hero Section */
.hero {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, #D5D5D5 0%, #e8e8e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

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

.hero h1 {
    font-size: 3rem;
    color: #F5B041;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero p {
    font-size: 1.3rem;
    color: #555;
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

section {
    margin-bottom: 4rem;
}

h2 {
    font-size: 2rem;
    color: #F5B041;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    color: #555;
    margin-bottom: 1rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: #666;
    font-size: 1.05rem;
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.two-column.reverse {
    direction: rtl;
}

.two-column.reverse > * {
    direction: ltr;
}

.image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #D5D5D5 0%, #e8e8e8 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.9rem;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* Services List / Checkbox Style */
.services-list {
    background-color: #F5B041;
    padding: 0.8rem;
    border-radius: 8px;
    color: #fff;
}

.services-list h3 {
    color: #fff;
    margin-bottom: 1.5rem;
}

.checkbox-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
}

.checkbox {
    width: 24px;
    height: 24px;
    background-color: rgba(255,255,255,0.3);
    border: 2px solid #fff;
    border-radius: 3px;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-item p {
    color: #fff;
    margin: 0;
    font-size: 1.05rem;
}

/* Contact Box */
.contact-box {
    background-color: #f5f5f5;
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
}

.leaf-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #D5D5D5 0%, #e8e8e8 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.contact-box h3 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-box p {
    color: #555;
    margin-bottom: 0.5rem;
}

.contact-box a {
    color: #F5B041;
    text-decoration: none;
    font-weight: 600;
}

.contact-box a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: #f5f5f5;
    padding: 2rem 0;
    text-align: center;
    margin-top: 4rem;
}

footer p {
    color: #999;
    font-size: 0.9rem;
}

footer a {
    color: #999;
    text-decoration: none;
    margin: 0 1rem;
}

footer a:hover {
    color: #F5B041;
}

/* Disclaimer Styles */
.disclaimer-content {
    background-color: #f5f5f5;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.disclaimer-content h3 {
    color: #F5B041;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.disclaimer-content h3:first-child {
    margin-top: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #f5f5f5;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .hero {
        height: 300px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .two-column {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .two-column.reverse {
        direction: ltr;
    }
    
    main {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .services-list,
    .contact-box,
    .disclaimer-content {
        padding: 1.5rem;
    }
}
