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

body {
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Header und Navigation */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    height: 80px;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2d4b8e;
}

nav ul {
    display: flex;
}

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

nav ul li a {
    transition: all 0.3s ease;
}

nav ul li a:hover {
    color: #3366cc;
}

/* Hero Section */
.hero {
    background-image: url('./imgs/1.png');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 20px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

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

.btn {
    display: inline-block;
    background-color: #3366cc;
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #254b99;
    transform: translateY(-3px);
}

/* Innovationsbereich */
.innovation {
    padding: 80px 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.section-number {
    display: block;
    color: #ccc;
    font-size: 2rem;
    margin-bottom: 20px;
}

.innovation h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #333;
}

.innovation p {
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Philosophie Bereich */
.philosophy {
    background-color: #f8f9fa;
    padding: 80px 20px;
}

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

.philosophy-text {
    flex: 1;
    min-width: 300px;
    padding-right: 50px;
}

.philosophy-text h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #333;
}

.philosophy-text p {
    margin-bottom: 30px;
}

.philosophy-image {
    flex: 1;
    min-width: 300px;
}

.philosophy-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.philosophy-points {
    margin-top: 40px;
}

.philosophy-point {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.philosophy-point-icon {
    margin-right: 20px;
    font-size: 1.5rem;
    color: #3366cc;
}

.philosophy-point-text h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

/* Dienstleistungen Bereich */
.services {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.services h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    text-align: center;
    color: #333;
}

.services p.subtitle {
    text-align: center;
    margin-bottom: 50px;
    color: #666;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.service-card {
    flex: 1;
    min-width: 250px;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.service-icon {
    font-size: 2rem;
    color: #3366cc;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.service-card p {
    color: #666;
    margin-bottom: 10px;
}

/* Erfolgsgeschichten Bereich */
.success-stories {
    background-color: #f0f5ff;
    padding: 80px 20px;
}

.success-stories h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    text-align: center;
    color: #333;
}

.success-stories p.subtitle {
    text-align: center;
    margin-bottom: 50px;
    color: #666;
}

.stories-container {
    max-width: 1200px;
    margin: 0 auto;
}

.stories-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.story-card {
    flex: 1;
    min-width: 300px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.story-content {
    padding: 20px;
}

.story-label {
    font-size: 0.9rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.story-text {
    color: #666;
    margin-bottom: 15px;
}

.story-result {
    color: #3366cc;
    font-weight: bold;
    display: block;
    margin-top: 20px;
}

/* Testimonial */
.testimonial {
    background-color: #f0f5ff;
    padding: 30px 20px;
    text-align: center;
    font-style: italic;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-text {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 15px;
}

.testimonial-author {
    font-style: normal;
    color: #777;
}

/* Kontaktformular */
.contact {
    padding: 80px 20px;
    background-color: white;
}

.contact h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    color: #333;
}

.contact p {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contact-form {
    flex: 1;
    min-width: 300px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

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

.contact-info {
    flex: 0 0 300px;
    background-color: #f0f5ff;
    padding: 30px;
    border-radius: 10px;
    margin-left: 30px;
}

.contact-info h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #333;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-icon {
    margin-right: 15px;
    color: #3366cc;
    font-size: 1.2rem;
}

.contact-text {
    flex: 1;
}

.contact-text strong {
    display: block;
    margin-bottom: 5px;
}

/* Footer */
footer {
    background-color: #1f2937;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-tagline {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 20px;
}

.footer-copyright {
    font-size: 0.8rem;
    opacity: 0.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .philosophy-text {
        padding-right: 0;
    }

    .philosophy-container, .contact-container {
        flex-direction: column;
    }

    .philosophy-image, .contact-info {
        margin-top: 50px;
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        height: auto;
        padding: 20px 5%;
    }

    nav ul {
        margin-top: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav ul li {
        margin: 0 10px 10px;
    }

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

    .service-card, .story-card {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .section-number, .innovation h2, .philosophy-text h2, .services h2, .success-stories h2, .contact h2 {
        font-size: 1.5rem;
    }
}