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

header {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 2rem;
}

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

.logo a {
    font-size: 1.7rem;
    font-weight: 600;
    color: #333;
    text-decoration: none;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    text-decoration: none;
    color: #555;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #000000;
}

main {
    padding-top: 80px; /* Platz für den fixierten Header */
}

.section {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 2rem;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 2rem;
}

.hero-content {
    flex: 1;
    padding-right: 3rem;
}

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

.hero p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 2rem;
    text-align: center;
}

.gallery {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.gallery img {
    width: 50%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.button.primary {
    background-color: #000000;
    color: #fff;
}

.button.primary:hover {
    background-color: #919191;
}

.button.secondary {
    background-color: #f0f0f0;
    color: #333;
    border: 1px solid #ccc;
}

.button.secondary:hover {
    background-color: #e0e0e0;
}

.features {
    text-align: center;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: rem;
    margin-top: 3rem;
}

.feature-item {
    padding: 2.5rem;
    border-radius: 10px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.feature-item img {
    max-width: 220px;
    height: auto;
    margin-bottom: 1.2rem;
}

.feature-item h3 {
    font-size: 1.3rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 0.7rem;
}

.feature-item p {
    color: #666;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    text-align: center;
}

.team-member {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    background-color: #fff;
    padding-bottom: 1rem;
}

.team-member img {
    width: 100%;
    height: auto;
    display: block;
}

.team-member h3 {
    font-size: 1.2rem;
    font-weight: 500;
    color: #333;
    margin-top: 1rem;
    margin-bottom: 0.3rem;
}

.team-member p {
    color: #777;
    font-size: 0.9rem;
}

.call-to-action {
    text-align: center;
}

.cta-content {
    padding: 3rem;
    background-color: #f0f0f0;
    border-radius: 10px;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-details p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: #000000;
    text-decoration: none;
}

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

footer {
    text-align: center;
    padding: 2.5rem;
    color: #777;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 960px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .gallery {
        flex-direction: column;
    }

    .gallery img {
        width: 100%;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none; /* Hier würde typischerweise ein Burgermenü eingeblendet */
    }

    .section {
        margin: 4rem auto;
        padding: 1.5rem;
    }

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

    .hero p {
        font-size: 1rem;
    }

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

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

    .cta-content {
        padding: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1rem;
    }
}
