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

body {
    color: #2d2d2d;
    background-color: #f5f5f5;
    line-height: 1.7;
}

/* Navigation */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.8rem;
    color: #005566;
    font-weight: bold;
}

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

.nav-links a {
    text-decoration: none;
    color: #005566;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #00a8b5;
}

/* Hero Section */
.hero {
    background-color: #005566;
    color: #fff;
    padding: 6rem 2rem;
    text-align: center;
}

.hero-text h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #00a8b5;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.cta:hover {
    background-color: #008c96;
}

/* Vorteile Section */
.vorteile {
    padding: 5rem 2rem;
    text-align: center;
}

.vorteile h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #005566;
}

.vorteile-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.vorteil {
    flex: 1 1 300px;
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.vorteil h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #00a8b5;
}

.vorteil p {
    font-size: 1.1rem;
}

/* Technologie Section */
.technologie {
    padding: 5rem 2rem;
    background-color: #e8f1f2;
    text-align: center;
}

.technologie h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #005566;
}

.technologie p {
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto 2rem;
}

/* Kontakt Section */
.kontakt {
    padding: 5rem 2rem;
    text-align: center;
}

.kontakt h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #005566;
}

.kontakt p {
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.kontakt-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    background-color: #ffffff;
    margin: 0 auto;
    justify-content: center;
}

.kontakt-form {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.kontakt-form input,
.kontakt-form textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.kontakt-form textarea {
    min-height: 150px;
    resize: vertical;
}

.kontakt-details {
    flex: 1 1 300px;
    text-align: left;
    font-size: 1.1rem;
}

.kontakt-details p {
    margin: 0.5rem 0;
}

/* Footer */
.footer {
    background-color: #005566;
    color: #fff;
    padding: 2rem;
    text-align: center;
}

.footer p {
    font-size: 1.1rem;
    max-width: 1000px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Navigation */
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

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

    /* Hero Section */
    .hero-text h2 {
        font-size: 1.8rem; /* Kleinere Überschrift auf Mobilgeräten */
    }

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

    /* Vorteile Section */
    .vorteile h2 {
        font-size: 1.8rem; /* Kleinere Überschrift auf Mobilgeräten */
    }

    .vorteil {
        flex: 1 1 100%;
    }

    .vorteil h3 {
        font-size: 1.4rem; /* Kleinere Unterüberschrift auf Mobilgeräten */
    }

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

    /* Technologie Section */
    .technologie h2 {
        font-size: 1.8rem; /* Kleinere Überschrift auf Mobilgeräten */
    }

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

    /* Kontakt Section */
    .kontakt h2 {
        font-size: 1.8rem; /* Kleinere Überschrift auf Mobilgeräten */
    }

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

    .kontakt-form input,
    .kontakt-form textarea {
        font-size: 0.9rem;
    }

    .kontakt-details {
        font-size: 1rem;
    }

    /* Footer */
    .footer p {
        font-size: 1rem;
    }

    /* CTA-Button */
    .cta {
        padding: 0.8rem 2rem;
    }
}