:root {
    --primary: #00E676;
    --dark: #0F0E1A;
    --dark-light: #1A192B;
    --text: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --shadow: rgba(0, 0, 0, 0.1);
    --border-radius: 10px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    color: var(--primary);
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
}

.header-links {
    display: flex;
    gap: 20px;
}

.header-links a {
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
}

section {
    padding: 60px 0;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary);
}

h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}

p {
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.btn {
    display: inline-block;
    background-color: var(--primary);
    color: var(--dark);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}

.hero-content {
    max-width: 500px;
}

.hero-image {
    width: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Arbeitsweise Section */
.arbeitsweise {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}

.arbeitsweise-content {
    padding-right: 20px;
}

.arbeitsweise-image {
    width: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.arbeitsweise-image img {
    width: 100%;
    height: auto;
    display: block;
}

.arbeitsweise-list {
    list-style: none;
}

.arbeitsweise-item {
    margin-bottom: 15px;
    color: var(--primary);
}

/* Leistungen Section */
.leistungen-intro {
    margin-bottom: 40px;
}

.leistungen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.leistung-card {
    background-color: var(--dark-light);
    padding: 30px;
    border-radius: var(--border-radius);
    height: 100%;
}

.leistung-icon {
    background-color: var(--primary);
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.landschaft {
    width: 100%;
    border-radius: var(--border-radius);
    margin: 50px 0;
    height: 200px;
    object-fit: cover;
}

/* Team Section */
.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    justify-items: center;
}

.team-member {
    background-color: var(--dark-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    width: 100%;
    max-width: 350px;
    text-align: center;
    padding-bottom: 20px;
}

.team-photo {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-name {
    margin-top: 20px;
    color: var(--primary);
}

.team-title {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 5px;
}

/* Kundenstimmen Section */
.kundenstimmen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.testimonial {
    background-color: var(--dark-light);
    padding: 30px;
    border-radius: var(--border-radius);
    position: relative;
}

.testimonial-text {
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: bold;
}

.stars {
    color: var(--primary);
    font-size: 18px;
    margin-bottom: 10px;
}

.quote-icon {
    color: var(--primary);
    font-size: 24px;
    margin-bottom: 10px;
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    gap: 20px;
}

.faq-item {
    background-color: var(--dark-light);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 15px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--primary);
    font-weight: bold;
}

.faq-answer {
    margin-top: 15px;
    display: none;
}

.faq-toggle {
    color: var(--primary);
    font-size: 20px;
}

/* Kontakt Section */
.kontakt-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
}

.kontakt-info {
    text-align: center;
    margin-bottom: 30px;
}

.kontakt-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--text);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    text-transform: uppercase;
    font-weight: bold;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    color: var(--primary);
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    display: block;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

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

.footer-address {
    margin-bottom: 20px;
}

.copyright {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background-color: var(--dark);
    color: var(--text);
    padding: 20px;
    border-radius: var(--border-radius);
    border: 1px solid var(--primary);
    z-index: 9999;
    display: none;
}

.cookie-content {
    text-align: center;
    margin-bottom: 20px;
}

.cookie-title {
    color: var(--primary);
    margin-bottom: 10px;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
}

.accept-all {
    background-color: var(--primary);
    color: var(--dark);
    border: none;
}

.accept-necessary {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero, .arbeitsweise {
        grid-template-columns: 1fr;
    }

    .hero-content, .arbeitsweise-content {
        max-width: 100%;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .team-grid, .leistungen-grid, .kundenstimmen-grid {
        grid-template-columns: 1fr;
    }

    .team-member {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .cookie-buttons {
        flex-direction: column;
    }
}