/* Spezifische Styles für index.html */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 150px 50px 50px;
    background: linear-gradient(135deg, #3fbfc6, #2e2e2e);
    min-height: 100vh;
}

.hero-content {
    max-width: 50%;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.hero-image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.about {
    padding: 100px 50px;
    background-color: #3f4f60;
    text-align: center;
}

.about h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.about p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 50px;
}

.about-features {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.feature-card {
    background-color: #2e2e2e;
    padding: 30px;
    border-radius: 15px;
    width: 300px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 40px;
    color: #00FFFF;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.cta-section {
    padding: 100px 50px;
    text-align: center;
    background: linear-gradient(135deg, #3fbfc6, #2e2e2e);
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
}