/* Grundlegende Styles und Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    overflow-x: hidden;
}

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

/* Header Styles */
header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-svg {
    height: 40px;
    width: auto;
}

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

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Hero Section */
.hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #a5dff9, #e7f5ff);
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    width: 50%;
    padding-right: 30px;
}

.hero-image {
    width: 50%;
}

.hero-svg {
    width: 100%;
    height: auto;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #212529;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #495057;
}

.cta-button {
    display: inline-block;
    background-color: #ff6b6b;
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #fa5252;
}

.cta-button.large {
    font-size: 1.2rem;
    padding: 16px 36px;
}

/* Overview Section */
.overview {
    padding: 80px 0;
    background-color: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.feature h3 {
    margin-bottom: 15px;
    color: #212529;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: #343a40;
    color: white;
}

.dark {
    background-color: #212529;
    color: white;
}

.feature-list {
    margin-top: 50px;
}

.feature-item {
    display: flex;
    margin-bottom: 40px;
    align-items: flex-start;
}

.feature-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6b6b;
    margin-right: 25px;
    line-height: 1;
}

.feature-info h3 {
    margin-bottom: 10px;
}

/* Technology Section */
.technology {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.tech-showcase {
    display: flex;
    align-items: center;
    margin-top: 50px;
}

.tech-info {
    width: 50%;
    padding-right: 40px;
}

.tech-visual {
    width: 50%;
}

.tech-svg {
    width: 100%;
    height: auto;
}

.tech-list {
    margin: 20px 0;
    padding-left: 20px;
}

.tech-list li {
    margin-bottom: 10px;
}

.tech-button {
    display: inline-block;
    background-color: #339af0;
    color: white;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 15px;
    transition: background-color 0.3s ease;
}

.tech-button:hover {
    background-color: #1c7ed6;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff8787, #ff6b6b);
    text-align: center;
    color: white;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
footer {
    background-color: #212529;
    color: #f8f9fa;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo p {
    margin-top: 15px;
    font-size: 0.9rem;
}

.footer-logo-svg {
    width: 60px;
    height: 60px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #ff6b6b;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #ced4da;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #ff6b6b;
}

.footer-contact p {
    margin-bottom: 10px;
    color: #ced4da;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #495057;
    color: #868e96;
    font-size: 0.9rem;
}

/* Typografie */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 50px;
    text-align: center;
}

section {
    overflow: hidden;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero .container,
    .tech-showcase {
        flex-direction: column;
    }
    
    .hero-content,
    .hero-image,
    .tech-info,
    .tech-visual {
        width: 100%;
        padding-right: 0;
    }
    
    .hero-content {
        margin-bottom: 40px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .tech-info {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }
    
    nav ul {
        margin-top: 20px;
    }
    
    nav ul li {
        margin-left: 15px;
        margin-right: 15px;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 40px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .cta-button.large {
        font-size: 1rem;
        padding: 12px 28px;
    }
    
    .feature-number {
        font-size: 2rem;
    }
}
