/* Container mit weißem Hintergrund */
.content-container {
    background-color: #ffffff;
    padding: 30px;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
}

/* Zusätzliche Stile für Überschriften und Text im Container */
.content-container h1, .content-container h2, .content-container h3 {
    color: #34495e;
}

.content-container p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Allgemeine Stile */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #eef1f6;
    color: #333;
}

header {
    background-color: #34495e;
    padding: 20px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo h1 {
    margin: 0;
    font-size: 24px;
}

header .logo p {
    margin: 0;
    font-size: 12px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 5px 0;
    }

    nav ul li a {
        font-size: 18px;
        padding: 15px 20px;
    }
}

.top-section {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 20px;
    padding: 40px;
    background-color: #f8f8f8;
}

.top-section .box {
    background-color: #58b6c0;
    padding: 20px;
    color: white;
    text-align: center;
}

.top-section .box h2 {
    margin-top: 0;
}

.top-section .box .btn {
    background-color: #34495e;
    padding: 10px;
    color: white;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
}

.image-box img {
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .top-section {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .box, .image-box {
        margin-bottom: 20px;
    }

    .box h2 {
        font-size: 24px;
    }

    .box p {
        font-size: 16px;
    }
}

.features {
    padding: 40px;
    background-color: #ffffff;
    text-align: center;
}

.features h2 {
    margin-bottom: 40px;
    color: #34495e;
}

.features-boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}

.feature {
    flex: 1 1 300px; /* Flex-grow: 1, Flex-shrink: 1, Basisbreite: 300px */
    max-width: 300px;
    text-align: center;
}

.feature img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.carousel {
    padding: 40px;
    background-color: #f39c12;
    text-align: center;
}

.carousel-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.carousel-box .image-box {
    flex: 1 1 300px;
    text-align: center;
}

.carousel-box .image-box img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 10px;
}

.carousel-box .text-box {
    flex: 2 1 500px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.carousel-box .text-box h2 {
    color: #34495e;
    font-size: 28px;
    margin-bottom: 15px;
}

.carousel-box .text-box h3 {
    color: #34495e;
    font-size: 22px;
    margin-bottom: 20px;
}

.carousel-box .text-box p {
    color: #333;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 18px;
}

@media (max-width: 768px) {
    .carousel-box {
        flex-direction: column;
    }

    .carousel-box .image-box,
    .carousel-box .text-box {
        flex: 1 1 100%;
    }
}

.bottom-section {
    padding: 40px;
    background-color: #ffffff;
}

.grid-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.grid-item img {
    width: 100%;
    height: auto;
}

.grid-item h3 {
    color: #34495e;
}

.grid-item .btn {
    background-color: #3498db;
    padding: 10px;
    color: white;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
}

footer {
    padding: 40px;
    background-color: #2ecc71;
    text-align: center;
}

footer p {
    margin: 0 0 20px 0;
    color: white;
    font-size: 20px;
}

footer form input {
    padding: 10px;
    width: 200px;
    border: none;
    margin-right: 10px;
}

footer form button {
    padding: 10px 20px;
    background-color: #27ae60;
    color: white;
    border: none;
    cursor: pointer;
}

.contact-container {
    text-align: center;
    background-color: #f8f8f8;
    padding: 40px;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
}

.contact-container h2 {
    color: #34495e;
    margin-bottom: 20px;
}

.contact-container p {
    font-size: 1.1em;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-details {
    margin-top: 20px;
}

.contact-details p {
    margin: 0;
}

.contact-details a {
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
}

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

.hypnose-animation {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
}

.spiral {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: conic-gradient(#34495e, #f8f8f8);
    animation: spin 4s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.btn-anwendungsgebiete {
    display: inline-block;
    padding: 15px 30px;
    background-color: #34495e;
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-anwendungsgebiete:hover {
    background-color: #3498db;
    transform: translateY(-3px);
}
