/* ===== CUSTOM STYLES - LEJAA WEBSITE ===== */

/* ===== CUSTOM STYLES - LEJAA WEBSITE ===== */

/* WordPress Admin Bar Fix */
#wpadminbar {
    z-index: 99999 !important;
}

/* BeTheme Admin Bar Fix */
.admin-bar .mfn-main {
    margin-top: 32px !important;
}

/* ===== KONTAKT BANNER STYLES ===== */

/* Kontakt Hero Section */
.kontakt-hero-section {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.kontakt-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.kontakt-hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.kontakt-hero-content p {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Kontaktbereich */
.kontaktbereich {
    background: #f8f9fa;
    padding: 80px 0;
}

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

.kontakt-links {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.kontakt-links h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 30px;
}

.kontakt-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.kontakt-links li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #e5e7eb;
}

.kontakt-links li:last-child {
    border-bottom: none;
}

.kontakt-links .icon {
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 5px;
}

.kontakt-links div {
    flex: 1;
}

.kontakt-links strong {
    font-weight: 600;
    color: #1f2937;
    display: block;
    margin-bottom: 5px;
}

.kontakt-links a {
    color: #f6ae42;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.kontakt-links a:hover {
    color: #e69a3a;
}

.kontakt-links small {
    color: #6b7280;
    font-size: 0.9rem;
}

.kontakt-rechts {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.kontakt-rechts h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 30px;
}

.kontakt-rechts form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.kontakt-rechts input,
.kontakt-rechts textarea {
    padding: 15px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.kontakt-rechts input:focus,
.kontakt-rechts textarea:focus {
    outline: none;
    border-color: #f6ae42;
    box-shadow: 0 0 0 3px rgba(246, 174, 66, 0.1);
}

.kontakt-rechts textarea {
    min-height: 120px;
    resize: vertical;
}

/* ===== FAQ SECTION STYLES ===== */

/* FAQ Section */
.faq-section {
    background: white;
    padding: 80px 0;
}

.faq-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin-bottom: 60px;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 16px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.faq-item:hover {
    border-color: #f6ae42;
    box-shadow: 0 8px 25px rgba(246, 174, 66, 0.15);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    background: white;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f6ae42;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px 30px;
    max-height: 200px;
}

.faq-answer p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* ===== CTA SECTION STYLES ===== */

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #f6ae42 0%, #e69a3a 100%);
    padding: 80px 0;
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.cta-content p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.cta-button {
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-button.primary {
    background: white;
    color: #f6ae42;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background: white;
    color: #f6ae42;
    transform: translateY(-3px);
}

.leistungen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.leistung-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.leistung-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.leistung-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}

.leistung-item span:last-child {
    font-weight: 600;
    font-size: 0.95rem;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Responsive Design für Kontakt Banner */
@media (max-width: 768px) {
    .kontakt-hero-content h1 {
        font-size: 2.5rem;
    }

    .kontakt-hero-content p {
        font-size: 1.2rem;
    }

    .kontakt-links,
    .kontakt-rechts {
        padding: 30px 20px;
    }

    .kontakt-links h2,
    .kontakt-rechts h2 {
        font-size: 2rem;
    }
}

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

    .kontakt-links li {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .kontakt-links .icon {
        margin-top: 0;
    }
}

/* Responsive Design für FAQ und CTA */
@media (max-width: 768px) {
    .faq-section h2,
    .cta-content h2 {
        font-size: 2.5rem;
    }
    
    .faq-question {
        padding: 20px 25px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .leistungen-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .faq-section h2,
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .leistungen-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-question {
        padding: 15px 20px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }
}

/* ======================================== BEREINIGTE CSS-DATEI ======================================== */

/* ======================================== LEJAA COMPLETE CSS - BEREINIGTE VERSION ======================================== */

/* ======================================== GLOBAL STYLES ======================================== */

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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* ======================================== TYPOGRAPHY ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    color: #1f2937;
}

h2 {
    font-size: 2rem;
    color: #1f2937;
}

h3 {
    font-size: 1.5rem;
    color: #374151;
}

p {
    margin-bottom: 1rem;
    color: #6b7280;
}

/* ======================================== LAYOUT COMPONENTS ======================================== */

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

/* Grid System */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col {
    flex: 1;
    padding: 0 15px;
}

.col-1 { flex: 0 0 8.333333%; }
.col-2 { flex: 0 0 16.666667%; }
.col-3 { flex: 0 0 25%; }
.col-4 { flex: 0 0 33.333333%; }
.col-5 { flex: 0 0 41.666667%; }
.col-6 { flex: 0 0 50%; }
.col-7 { flex: 0 0 58.333333%; }
.col-8 { flex: 0 0 66.666667%; }
.col-9 { flex: 0 0 75%; }
.col-10 { flex: 0 0 83.333333%; }
.col-11 { flex: 0 0 91.666667%; }
.col-12 { flex: 0 0 100%; }

/* ======================================== BUTTONS ======================================== */

.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    line-height: 1.5;
}

.btn-primary {
    background-color: #3fb38e;
    color: white;
}

.btn-primary:hover {
    background-color: #359a7a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(63, 179, 142, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #3fb38e;
    border: 2px solid #3fb38e;
}

.btn-secondary:hover {
    background-color: #3fb38e;
    color: white;
}

.btn-orange {
    background-color: #f6ae42;
    color: white;
}

.btn-orange:hover {
    background-color: #e69a3a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(246, 174, 66, 0.3);
}

.btn-outline-orange {
    background-color: transparent;
    color: #f6ae42;
    border: 2px solid #f6ae42;
}

.btn-outline-orange:hover {
    background-color: #f6ae42;
    color: white;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* ======================================== CARDS ======================================== */

.card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-header {
    padding: 20px;
    border-bottom: 1px solid #e5e7eb;
    background-color: #f9fafb;
}

.card-body {
    padding: 20px;
}

.card-footer {
    padding: 20px;
    border-top: 1px solid #e5e7eb;
    background-color: #f9fafb;
}

/* ======================================== FORMS ======================================== */

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

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: white;
}

.form-control:focus {
    outline: none;
    border-color: #3fb38e;
    box-shadow: 0 0 0 3px rgba(63, 179, 142, 0.1);
}

.form-control:invalid {
    border-color: #ef4444;
}

.form-control:valid {
    border-color: #10b981;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* ======================================== ALERTS ======================================== */

.alert {
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid;
}

.alert-success {
    background-color: #f0fdf4;
    border-color: #10b981;
    color: #065f46;
}

.alert-info {
    background-color: #eff6ff;
    border-color: #3b82f6;
    color: #1e40af;
}

.alert-warning {
    background-color: #fffbeb;
    border-color: #f59e0b;
    color: #92400e;
}

.alert-danger {
    background-color: #fef2f2;
    border-color: #ef4444;
    color: #991b1b;
}

/* ======================================== BADGES ======================================== */

.badge {
    display: inline-block;
    padding: 4px 8px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-primary {
    background-color: #3fb38e;
    color: white;
}

.badge-secondary {
    background-color: #6b7280;
    color: white;
}

.badge-success {
    background-color: #10b981;
    color: white;
}

.badge-warning {
    background-color: #f59e0b;
    color: white;
}

.badge-danger {
    background-color: #ef4444;
    color: white;
}

/* ======================================== UTILITIES ======================================== */

/* Text Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-justify { text-align: justify; }

.text-primary { color: #3fb38e; }
.text-secondary { color: #6b7280; }
.text-success { color: #10b981; }
.text-warning { color: #f59e0b; }
.text-danger { color: #ef4444; }
.text-white { color: white; }

.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }

.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }
.font-normal { font-weight: 400; }

/* Spacing Utilities */
.m-0 { margin: 0; }
.m-1 { margin: 0.25rem; }
.m-2 { margin: 0.5rem; }
.m-3 { margin: 1rem; }
.m-4 { margin: 1.5rem; }
.m-5 { margin: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.ml-0 { margin-left: 0; }
.ml-1 { margin-left: 0.25rem; }
.ml-2 { margin-left: 0.5rem; }
.ml-3 { margin-left: 1rem; }
.ml-4 { margin-left: 1.5rem; }
.ml-5 { margin-left: 3rem; }

.mr-0 { margin-right: 0; }
.mr-1 { margin-right: 0.25rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-3 { margin-right: 1rem; }
.mr-4 { margin-right: 1.5rem; }
.mr-5 { margin-right: 3rem; }

.p-0 { padding: 0; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 3rem; }

.pt-0 { padding-top: 0; }
.pt-1 { padding-top: 0.25rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-3 { padding-top: 1rem; }
.pt-4 { padding-top: 1.5rem; }
.pt-5 { padding-top: 3rem; }

.pb-0 { padding-bottom: 0; }
.pb-1 { padding-bottom: 0.25rem; }
.pb-2 { padding-bottom: 0.5rem; }
.pb-3 { padding-bottom: 1rem; }
.pb-4 { padding-bottom: 1.5rem; }
.pb-5 { padding-bottom: 3rem; }

.pl-0 { padding-left: 0; }
.pl-1 { padding-left: 0.25rem; }
.pl-2 { padding-left: 0.5rem; }
.pl-3 { padding-left: 1rem; }
.pl-4 { padding-left: 1.5rem; }
.pl-5 { padding-left: 3rem; }

.pr-0 { padding-right: 0; }
.pr-1 { padding-right: 0.25rem; }
.pr-2 { padding-right: 0.5rem; }
.pr-3 { padding-right: 1rem; }
.pr-4 { padding-right: 1.5rem; }
.pr-5 { padding-right: 3rem; }

/* Display Utilities */
.d-none { display: none; }
.d-block { display: block; }
.d-inline { display: inline; }
.d-inline-block { display: inline-block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

/* Flex Utilities */
.flex-row { flex-direction: row; }
.flex-column { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }
.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }
.align-start { align-items: flex-start; }
.align-end { align-items: flex-end; }
.align-center { align-items: center; }
.align-baseline { align-items: baseline; }
.align-stretch { align-items: stretch; }

/* Position Utilities */
.position-static { position: static; }
.position-relative { position: relative; }
.position-absolute { position: absolute; }
.position-fixed { position: fixed; }
.position-sticky { position: sticky; }

/* Border Utilities */
.border { border: 1px solid #e5e7eb; }
.border-0 { border: 0; }
.border-top { border-top: 1px solid #e5e7eb; }
.border-bottom { border-bottom: 1px solid #e5e7eb; }
.border-left { border-left: 1px solid #e5e7eb; }
.border-right { border-right: 1px solid #e5e7eb; }

.border-primary { border-color: #3fb38e; }
.border-secondary { border-color: #6b7280; }
.border-success { border-color: #10b981; }
.border-warning { border-color: #f59e0b; }
.border-danger { border-color: #ef4444; }

/* Border Radius */
.rounded { border-radius: 0.375rem; }
.rounded-sm { border-radius: 0.125rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }

/* Shadow Utilities */
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow { box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }

/* Background Utilities */
.bg-primary { background-color: #3fb38e; }
.bg-secondary { background-color: #6b7280; }
.bg-success { background-color: #10b981; }
.bg-warning { background-color: #f59e0b; }
.bg-danger { background-color: #ef4444; }
.bg-white { background-color: white; }
.bg-gray-50 { background-color: #f9fafb; }
.bg-gray-100 { background-color: #f3f4f6; }
.bg-gray-200 { background-color: #e5e7eb; }
.bg-gray-300 { background-color: #d1d5db; }
.bg-gray-400 { background-color: #9ca3af; }
.bg-gray-500 { background-color: #6b7280; }
.bg-gray-600 { background-color: #4b5563; }
.bg-gray-700 { background-color: #374151; }
.bg-gray-800 { background-color: #1f2937; }
.bg-gray-900 { background-color: #111827; }

/* Width and Height Utilities */
.w-25 { width: 25%; }
.w-50 { width: 50%; }
.w-75 { width: 75%; }
.w-100 { width: 100%; }
.w-auto { width: auto; }

.h-25 { height: 25%; }
.h-50 { height: 50%; }
.h-75 { height: 75%; }
.h-100 { height: 100%; }
.h-auto { height: auto; }

/* Overflow Utilities */
.overflow-auto { overflow: auto; }
.overflow-hidden { overflow: hidden; }
.overflow-visible { overflow: visible; }
.overflow-scroll { overflow: scroll; }

/* Cursor Utilities */
.cursor-pointer { cursor: pointer; }
.cursor-default { cursor: default; }
.cursor-not-allowed { cursor: not-allowed; }

/* ======================================== RESPONSIVE DESIGN ======================================== */

/* Mobile First Approach */
@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
    
    .btn-lg {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .card {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .row {
        flex-direction: column;
    }
    
    .col,
    .col-1, .col-2, .col-3, .col-4, .col-5, .col-6,
    .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }
    
    .d-md-none { display: none; }
    .d-md-block { display: block; }
    .d-md-flex { display: flex; }
}

@media (max-width: 992px) {
    .d-lg-none { display: none; }
    .d-lg-block { display: block; }
    .d-lg-flex { display: flex; }
}

@media (max-width: 1200px) {
    .d-xl-none { display: none; }
    .d-xl-block { display: block; }
    .d-xl-flex { display: flex; }
}

/* ======================================== ANIMATIONS ======================================== */

/* Fade In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Slide In Animation */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

/* Scale Animation */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.scale-in {
    animation: scaleIn 0.5s ease-out;
}

/* ======================================== HOVER EFFECTS ======================================== */

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hover-glow {
    transition: box-shadow 0.3s ease;
}

.hover-glow:hover {
    box-shadow: 0 0 20px rgba(63, 179, 142, 0.3);
}

.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* ======================================== PRINT STYLES ======================================== */

@media print {
    .btn,
    .alert,
    .badge {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }
    
    .card {
        border: 1px solid #000;
        box-shadow: none;
    }
}

/* ======================================== ACCESSIBILITY ======================================== */

/* Focus Styles */
.btn:focus,
.form-control:focus,
.card:focus {
    outline: 2px solid #3fb38e;
    outline-offset: 2px;
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .btn {
        border: 2px solid currentColor;
    }
    
    .card {
        border: 2px solid #000;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ======================================== ENDE DER BEREINIGTEN CSS-DATEI ======================================== */

/* ======================================== DIENSTLEISTUNGEN BLOCK STYLES ======================================== */

/* Dienstleistungen Block */
.dienstleistungen-block {
    padding: 2rem 0;
}

/* Header Section */
.dienstleistungen-header {
    text-align: center;
    padding: 3rem 0;
    background: linear-gradient(135deg, #f6ae42 0%, #e89a2e 100%);
    color: white;
    margin-bottom: 3rem;
}

.dienstleistungen-header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.header-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
}

/* Dienstleistungen Grid */
.dienstleistungen-grid {
    padding: 2rem 0;
}

.dienstleistungen-grid .container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

/* Dienstleistung Item */
.dienstleistung-item {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
    margin-bottom: 4rem;
    padding: 0;
}

.dienstleistung-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.dienstleistung-item.reverse {
    flex-direction: row-reverse;
}

.dienstleistung-item:nth-child(1) { animation-delay: 0.1s; }
.dienstleistung-item:nth-child(2) { animation-delay: 0.2s; }
.dienstleistung-item:nth-child(3) { animation-delay: 0.3s; }
.dienstleistung-item:nth-child(4) { animation-delay: 0.4s; }
.dienstleistung-item:nth-child(5) { animation-delay: 0.5s; }
.dienstleistung-item:nth-child(6) { animation-delay: 0.6s; }

/* Dienstleistung Image */
.dienstleistung-image {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
    min-height: 300px;
}

.dienstleistung-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.dienstleistung-item:hover .dienstleistung-image img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
}

.service-badge {
    background: rgba(246, 174, 66, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* Dienstleistung Content */
.dienstleistung-content {
    flex: 1;
    padding: 2.5rem;
}

.dienstleistung-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #222;
    line-height: 1.3;
}

.dienstleistung-content p {
    color: #666;
    line-height: 1.6;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Vorteile Liste */
.vorteile-liste {
    margin-bottom: 2.5rem;
}

.vorteil-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: #444;
}

.vorteil-icon {
    color: #f6ae42;
    font-weight: bold;
    font-size: 1.1rem;
    margin-right: 0.8rem;
    min-width: 20px;
}

/* Button Group */
.button-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: #f6ae42;
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary:hover {
    background: #e89a2e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(246, 174, 66, 0.3);
    color: white;
    text-decoration: none;
}

.btn-secondary {
    background: transparent;
    color: #f6ae42;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid #f6ae42;
    font-family: 'Montserrat', sans-serif;
}

.btn-secondary:hover {
    background: #f6ae42;
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}

/* CTA Section */
.dienstleistungen-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    color: white;
    margin-top: 3rem;
}

.dienstleistungen-cta h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.dienstleistungen-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
}

.cta-button.primary {
    background: #f6ae42;
    color: white;
}

.cta-button.primary:hover {
    background: #e89a2e;
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background: white;
    color: #f6ae42;
    transform: translateY(-2px);
}

/* Responsive Design für Dienstleistungen */
@media (max-width: 768px) {
    .dienstleistungen-header h1 {
        font-size: 2rem;
    }
    
    .header-subtitle {
        font-size: 1.1rem;
    }
    
    .dienstleistung-item {
        flex-direction: column;
        gap: 0;
        margin-bottom: 3rem;
    }
    
    .dienstleistung-item.reverse {
        flex-direction: column;
    }
    
    .dienstleistung-image {
        flex: none;
        width: 100%;
        min-height: 300px;
    }
    
    .dienstleistung-image img {
        margin: 15px;
        border-radius: 8px;
    }
    
    .dienstleistung-content {
        padding: 2rem 1.5rem;
    }
    
    .dienstleistung-content h3 {
        font-size: 1.8rem;
    }
    
    .dienstleistung-content p {
        font-size: 1rem;
    }
    
    .button-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        text-align: center;
        width: 100%;
        padding: 1rem 1.5rem;
    }
    
    .dienstleistungen-cta h2 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .dienstleistungen-block {
        padding: 1rem 0;
    }
    
    .dienstleistungen-header {
        padding: 2rem 1rem;
    }
    
    .dienstleistungen-header h1 {
        font-size: 1.8rem;
    }
    
    .header-subtitle {
        font-size: 1rem;
    }
    
    .dienstleistungen-grid .container {
        gap: 2rem;
    }
    
    .dienstleistung-item {
        border-radius: 12px;
    }
    
    .dienstleistung-image {
        min-height: 200px;
    }
    
    .dienstleistung-content {
        padding: 1.5rem 1rem;
    }
    
    .dienstleistung-content h3 {
        font-size: 1.3rem;
    }
    
    .vorteil-item {
        font-size: 0.95rem;
    }
    
    .dienstleistungen-cta {
        padding: 2rem 1rem;
    }
    
    .dienstleistungen-cta h2 {
        font-size: 1.6rem;
    }
}

/* Focus Styles für Dienstleistungen */
.btn-primary:focus,
.btn-secondary:focus,
.cta-button:focus {
    outline: 2px solid #f6ae42;
    outline-offset: 2px;
}

/* Print Styles für Dienstleistungen */
@media print {
    .dienstleistungen-header {
        background: #f0f0f0 !important;
        color: #000 !important;
    }
    
    .dienstleistungen-cta {
        background: #f0f0f0 !important;
        color: #000 !important;
    }
    
    .dienstleistung-item {
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    .dienstleistung-image img {
        filter: grayscale(100%);
    }
} 

/* ========================================
   ABLAUF BLOCK STYLES
   ======================================== */

/* Ablauf Block */
.ablauf-block {
    padding: 3rem 0;
    background: white;
}

/* Header Section */
.ablauf-header {
    text-align: center;
    margin-bottom: 3rem;
}

.ablauf-header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #222;
    line-height: 1.2;
}

.header-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Content Section */
.ablauf-content {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

/* Text Column */
.text-column {
    flex: 0 0 40%;
    position: sticky;
    top: 2rem;
}

.text-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #222;
    line-height: 1.3;
}

.text-content p {
    color: #666;
    line-height: 1.6;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Trust Indicators */
.trust-indicators {
    margin: 2rem 0;
}

.trust-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #444;
}

.trust-icon {
    color: #f6ae42;
    font-weight: bold;
    font-size: 1.1rem;
    margin-right: 0.8rem;
    min-width: 20px;
}

/* CTA Button */
.cta-button {
    background: #f6ae42;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
}

.cta-button:hover {
    background: #e89a2e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(246, 174, 66, 0.3);
    color: white;
    text-decoration: none;
}

/* Icon Boxes */
.icon-boxes {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.icon-box {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f6ae42, #e89a2e);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.icon-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.icon-box:hover::before {
    transform: scaleX(1);
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f6ae42, #e89a2e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    transition: all 0.3s ease;
}

.icon-box:hover .icon-circle {
    transform: scale(1.1);
}

.icon-box h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #222;
    line-height: 1.3;
}

.icon-box p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

/* Responsive Design für Ablauf Block */
@media (max-width: 768px) {
    .ablauf-header h1 {
        font-size: 2rem;
    }
    
    .header-subtitle {
        font-size: 1.1rem;
    }
    
    .ablauf-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .text-column {
        flex: none;
        position: static;
    }
    
    .text-content h2 {
        font-size: 1.6rem;
    }
    
    .text-content p {
        font-size: 1rem;
    }
    
    .icon-boxes {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .icon-box {
        padding: 1.5rem;
    }
    
    .icon-circle {
        width: 60px;
        height: 60px;
    }
    
    .icon-box h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .ablauf-block {
        padding: 2rem 0;
    }
    
    .ablauf-header {
        margin-bottom: 2rem;
    }
    
    .ablauf-header h1 {
        font-size: 1.8rem;
    }
    
    .header-subtitle {
        font-size: 1rem;
    }
    
    .ablauf-content {
        gap: 1.5rem;
    }
    
    .text-content h2 {
        font-size: 1.4rem;
    }
    
    .text-content p {
        font-size: 0.95rem;
    }
    
    .icon-boxes {
        gap: 1rem;
    }
    
    .icon-box {
        padding: 1rem;
    }
    
    .icon-circle {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .icon-box h3 {
        font-size: 1.1rem;
    }
    
    .icon-box p {
        font-size: 0.9rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* Animationen für Ablauf Block */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.icon-box {
    animation: fadeInUp 0.6s ease-out;
}

.icon-box:nth-child(1) { animation-delay: 0.1s; }
.icon-box:nth-child(2) { animation-delay: 0.2s; }
.icon-box:nth-child(3) { animation-delay: 0.3s; }
.icon-box:nth-child(4) { animation-delay: 0.4s; }

/* Focus Styles für Ablauf Block */
.cta-button:focus {
    outline: 2px solid #f6ae42;
    outline-offset: 2px;
}

/* Print Styles für Ablauf Block */
@media print {
    .ablauf-block {
        background: white !important;
    }
    
    .icon-box {
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    .cta-button {
        background: #ccc !important;
        color: #000 !important;
    }
} 

/* ========================================
   ERSTGESPRÄCH BLOCK STYLES
   ======================================== */

/* Erstgespräch Block */
.erstgespraech-block {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* Header Section */
.erstgespraech-header {
    text-align: center;
    margin-bottom: 3rem;
}

.erstgespraech-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #222;
    line-height: 1.2;
}

.erstgespraech-header .header-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Benefit Item */
.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f6ae42, #e89a2e);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.benefit-item:hover::before {
    transform: scaleX(1);
}

/* Benefit Icon */
.benefit-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f6ae42, #e89a2e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1);
}

/* Benefit Content */
.benefit-content {
    flex: 1;
}

.benefit-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #222;
    line-height: 1.3;
}

.benefit-content p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

/* CTA Section */
.erstgespraech-cta {
    text-align: center;
}

.erstgespraech-cta .cta-button {
    background: #f6ae42;
    color: white;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 8px 25px rgba(246, 174, 66, 0.3);
}

.erstgespraech-cta .cta-button:hover {
    background: #e89a2e;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(246, 174, 66, 0.4);
    color: white;
    text-decoration: none;
}

/* Responsive Design für Erstgespräch Block */
@media (max-width: 768px) {
    .erstgespraech-block {
        padding: 3rem 0;
    }
    
    .erstgespraech-header h2 {
        font-size: 2rem;
    }
    
    .erstgespraech-header .header-subtitle {
        font-size: 1.1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-item {
        padding: 1.5rem;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
    }
    
    .benefit-content h3 {
        font-size: 1.2rem;
    }
    
    .erstgespraech-cta .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .erstgespraech-block {
        padding: 2rem 0;
    }
    
    .erstgespraech-header {
        margin-bottom: 2rem;
    }
    
    .erstgespraech-header h2 {
        font-size: 1.8rem;
    }
    
    .erstgespraech-header .header-subtitle {
        font-size: 1rem;
    }
    
    .benefit-item {
        padding: 1rem;
        gap: 1rem;
    }
    
    .benefit-icon {
        width: 45px;
        height: 45px;
    }
    
    .benefit-content h3 {
        font-size: 1.1rem;
    }
    
    .benefit-content p {
        font-size: 0.95rem;
    }
    
    .erstgespraech-cta .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 300px;
    }
}

/* Animationen für Erstgespräch Block */
.benefit-item {
    animation: fadeInUp 0.6s ease-out;
}

.benefit-item:nth-child(1) { animation-delay: 0.1s; }
.benefit-item:nth-child(2) { animation-delay: 0.2s; }
.benefit-item:nth-child(3) { animation-delay: 0.3s; }

/* Focus Styles für Erstgespräch Block */
.erstgespraech-cta .cta-button:focus {
    outline: 2px solid #f6ae42;
    outline-offset: 2px;
}

/* Print Styles für Erstgespräch Block */
@media print {
    .erstgespraech-block {
        background: white !important;
    }
    
    .benefit-item {
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    .erstgespraech-cta .cta-button {
        background: #ccc !important;
        color: #000 !important;
    }
} 

/* ========================================
   KUNDENBEWERTUNGEN BLOCK STYLES
   ======================================== */

/* Kundenbewertungen Block */
.kundenbewertungen-block {
    padding: 4rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

/* Header Section */
.kundenbewertungen-header {
    text-align: center;
    margin-bottom: 3rem;
}

.kundenbewertungen-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #222;
    line-height: 1.2;
}

.kundenbewertungen-header .header-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Bewertungen Grid */
.bewertungen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

/* Bewertung Item */
.bewertung-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bewertung-item::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #f6ae42;
    opacity: 0.1;
    font-family: serif;
    line-height: 1;
}

.bewertung-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

/* Stars */
.stars {
    color: #f6ae42;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

/* Blockquote */
.bewertung-content blockquote {
    font-style: italic;
    color: #555;
    line-height: 1.6;
    font-size: 1.1rem;
    margin: 0 0 1.5rem 0;
    position: relative;
}

/* Author Info */
.bewertung-author {
    border-top: 1px solid #e5e7eb;
    padding-top: 1rem;
}

.author-info h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #222;
    margin: 0 0 0.25rem 0;
}

.author-info p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

/* Statistiken Section */
.statistiken-section {
    background: white;
    border-radius: 16px;
    padding: 3rem 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.statistiken-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

/* Statistik Item */
.statistik-item {
    padding: 1rem;
}

.statistik-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #f6ae42;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.statistik-label {
    color: #666;
    font-size: 1rem;
    font-weight: 500;
}

/* Responsive Design für Kundenbewertungen Block */
@media (max-width: 768px) {
    .kundenbewertungen-block {
        padding: 3rem 0;
    }
    
    .kundenbewertungen-header h2 {
        font-size: 2rem;
    }
    
    .kundenbewertungen-header .header-subtitle {
        font-size: 1.1rem;
    }
    
    .bewertungen-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .bewertung-item {
        padding: 1.5rem;
    }
    
    .bewertung-content blockquote {
        font-size: 1rem;
    }
    
    .statistiken-section {
        padding: 2rem 1.5rem;
    }
    
    .statistiken-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .statistik-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .kundenbewertungen-block {
        padding: 2rem 0;
    }
    
    .kundenbewertungen-header {
        margin-bottom: 2rem;
    }
    
    .kundenbewertungen-header h2 {
        font-size: 1.8rem;
    }
    
    .kundenbewertungen-header .header-subtitle {
        font-size: 1rem;
    }
    
    .bewertung-item {
        padding: 1rem;
    }
    
    .bewertung-item::before {
        font-size: 3rem;
        left: 15px;
    }
    
    .bewertung-content blockquote {
        font-size: 0.95rem;
    }
    
    .author-info h4 {
        font-size: 1rem;
    }
    
    .author-info p {
        font-size: 0.9rem;
    }
    
    .statistiken-section {
        padding: 1.5rem 1rem;
    }
    
    .statistik-number {
        font-size: 1.8rem;
    }
    
    .statistik-label {
        font-size: 0.9rem;
    }
}

/* Animationen für Kundenbewertungen Block */
.bewertung-item {
    animation: fadeInUp 0.6s ease-out;
}

.bewertung-item:nth-child(1) { animation-delay: 0.1s; }
.bewertung-item:nth-child(2) { animation-delay: 0.2s; }
.bewertung-item:nth-child(3) { animation-delay: 0.3s; }

.statistik-item {
    animation: fadeInUp 0.6s ease-out;
}

.statistik-item:nth-child(1) { animation-delay: 0.4s; }
.statistik-item:nth-child(2) { animation-delay: 0.5s; }
.statistik-item:nth-child(3) { animation-delay: 0.6s; }

/* Print Styles für Kundenbewertungen Block */
@media print {
    .kundenbewertungen-block {
        background: white !important;
    }
    
    .bewertung-item {
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    .statistiken-section {
        box-shadow: none;
        border: 1px solid #ccc;
    }
} 

/* ========================================
   VIDEO HERO BLOCK STYLES
   ======================================== */

/* Video Hero Block */
.video-hero-block {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Video Background */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.video-fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Video Overlay */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    text-align: center;
    color: white;
}

.hero-text {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-line-1,
.hero-line-2 {
    display: block;
}

.hero-line-1 {
    color: #f6ae42;
}

.hero-line-2 {
    color: white;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    opacity: 0.95;
    color: white;
}

.hero-cta-button {
    display: inline-block;
    background: #f6ae42;
    color: white;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(246, 174, 66, 0.3);
}

.hero-cta-button:hover {
    background: #e89a2e;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(246, 174, 66, 0.4);
    color: white;
    text-decoration: none;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid white;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    opacity: 0.8;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Content Section */
.content-section {
    padding: 4rem 0;
    background: white;
}

.content-section .content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.content-section .content-wrapper h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.content-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
}

.content-text p {
    margin-bottom: 1.5rem;
}

.content-text p:last-child {
    margin-bottom: 0;
}

/* Responsive Design für Video Hero Block */
@media (max-width: 768px) {
    .video-hero-block {
        height: 80vh;
        min-height: 500px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .content-section .content-wrapper h2 {
        font-size: 2rem;
    }
    
    .content-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .video-hero-block {
        height: 70vh;
        min-height: 400px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 280px;
    }
    
    .content-section {
        padding: 3rem 0;
    }
    
    .content-section .content-wrapper h2 {
        font-size: 1.8rem;
    }
    
    .content-text {
        font-size: 1rem;
    }
}

/* Focus Styles für Video Hero Block */
.hero-cta-button:focus {
    outline: 2px solid #f6ae42;
    outline-offset: 2px;
}

/* Print Styles für Video Hero Block */
@media print {
    .video-hero-block {
        height: auto;
        background: white;
        color: black;
    }
    
    .video-background {
        display: none;
    }
    
    .hero-text h1 {
        color: black;
        text-shadow: none;
    }
    
    .hero-subtitle {
        color: #666;
        text-shadow: none;
    }
    
    .hero-cta-button {
        background: #ccc;
        color: black;
        box-shadow: none;
    }
} 

/* ========================================
   START BANNER BLOCK STYLES
   ======================================== */

/* Start Banner Block */
.start-banner {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Banner Background */
.banner-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.banner-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

/* Banner Container */
.banner-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 4rem;
    justify-content: flex-start;
    padding-left: 50px;
}

/* Banner Left */
.banner-left {
    flex: 1;
    max-width: 600px;
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(5px);
}

.banner-text h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-shadow: 0 6px 12px rgba(0, 0, 0, 0.9);
    margin-top: 200px;
}

/* Services Grid */
.services-grid {
    display: flex;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.services-column {
    flex: 1;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.9);
}

.service-icon {
    color: #f6ae42;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.9);
}

/* Banner Button */
.banner-button {
    display: inline-block;
    background: #f6ae42;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(246, 174, 66, 0.3);
}

.banner-button:hover {
    background: #e89a2e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(246, 174, 66, 0.4);
    color: white;
    text-decoration: none;
}

/* Banner Right */
.banner-right {
    display: none;
}

/* Responsive Design für Start Banner Block */
@media (max-width: 768px) {
    .start-banner {
        min-height: 70vh;
    }
    
    .banner-container {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .banner-text h1 {
        font-size: 2.2rem;
    }
    
    .services-grid {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .service-item {
        font-size: 1rem;
        justify-content: center;
    }
    
    .banner-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .banner-right {
        display: none;
    }
}

@media (max-width: 480px) {
    .start-banner {
        min-height: 60vh;
    }
    
    .banner-container {
        padding: 0 15px;
    }
    
    .banner-text h1 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .services-grid {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .service-item {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
    }
    
    .service-icon {
        font-size: 1.1rem;
    }
    
    .banner-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 280px;
    }
    
    .banner-right {
        display: none;
    }
}

/* Animationen für Start Banner Block */
.banner-text h1 {
    animation: fadeInUp 0.8s ease-out;
}

.services-grid {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.banner-button {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Focus Styles für Start Banner Block */
.banner-button:focus {
    outline: 2px solid #f6ae42;
    outline-offset: 2px;
}

/* Print Styles für Start Banner Block */
@media print {
    .start-banner {
        background: white;
        color: black;
    }
    
    .banner-background {
        display: none;
    }
    
    .banner-text h1 {
        color: black;
        text-shadow: none;
    }
    
    .service-item {
        color: black;
    }
    
    .banner-button {
        background: #ccc;
        color: black;
        box-shadow: none;
    }
    
    .banner-right {
        background: #f0f0f0;
        color: black;
    }
}

/* ========================================
   STARTSEITE STYLES
   ======================================== */

/* Problem Split Section */
.problem-split-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.problem-split-headline {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 3rem;
}

.problem-split-layout {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
    align-items: center;
}

.problem-split-image-bg {
    flex: 1;
    height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
}

.problem-split-text-clean {
    flex: 1;
    padding: 2rem;
}

.problem-divider {
    width: 60px;
    height: 4px;
    background: #f6ae42;
    margin-bottom: 2rem;
}

.problem-quote-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    font-style: italic;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

.problem-task-list-clean {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.problem-task-list-clean li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #666;
}

.task-icon-clean {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.problem-conclusion-card {
    background: #f6ae42;
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
}

/* Features Section */
.features-section {
    padding: 4rem 0;
    background: white;
}

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

.features-header {
    text-align: center;
    margin-bottom: 3rem;
}

.features-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1rem;
}

.features-header p {
    font-size: 1.2rem;
    color: #666;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* CTA Section Final */
.cta-section-final {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f6ae42 0%, #e89a2e 100%);
    color: white;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.cta-container h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta-container p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons-final {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button-final {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.cta-button-final.primary {
    background: white;
    color: #f6ae42;
}

.cta-button-final.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    color: #f6ae42;
    text-decoration: none;
}

.cta-button-final.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button-final.secondary:hover {
    background: white;
    color: #f6ae42;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Phone CTA */
.phone-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.phone-cta-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f6ae42;
    color: white;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(246, 174, 66, 0.3);
    transition: all 0.3s ease;
}

.phone-cta-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(246, 174, 66, 0.4);
}

.phone-cta-button.ringing {
    animation: ring 0.5s ease-in-out infinite alternate;
}

@keyframes ring {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

/* Responsive Design für Startseite */
@media (max-width: 768px) {
    .problem-split-layout {
        flex-direction: column;
        gap: 2rem;
    }
    
    .problem-split-headline {
        font-size: 2rem;
    }
    
    .features-header h2 {
        font-size: 2rem;
    }
    
    .cta-container h2 {
        font-size: 2rem;
    }
    
    .cta-buttons-final {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button-final {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .problem-split-headline {
        font-size: 1.8rem;
    }
    
    .features-header h2 {
        font-size: 1.8rem;
    }
    
    .cta-container h2 {
        font-size: 1.8rem;
    }
    
    .phone-cta {
        bottom: 1rem;
        right: 1rem;
    }
    
    .phone-cta-button {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* ========================================
   ERFOLGSGESCHICHTEN BLOCK STYLES
   ======================================== */

/* Erfolgsgeschichten Block */
.erfolgsgeschichten-block {
    padding: 4rem 0;
    background: #f8fafc;
}

/* Header Section */
.erfolgsgeschichten-header {
    text-align: center;
    margin-bottom: 3rem;
}

.header-top {
    margin-bottom: 1rem;
}

.category-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #3b82f6;
    font-size: 0.9rem;
    font-weight: 500;
}

.category-label i {
    font-size: 1rem;
}

.erfolgsgeschichten-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.erfolgsgeschichten-header .header-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Success Stories Grid */
.success-stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Success Card */
.success-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.success-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Card Header */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid #f3f4f6;
}

.card-category {
    color: #3b82f6;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.highlight-tag {
    background: #10b981;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Card Content */
.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.card-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Results List */
.results-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.result-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.result-item.negative {
    color: #ef4444;
}

.result-item.positive {
    color: #10b981;
}

.result-item i {
    font-size: 1rem;
    flex-shrink: 0;
}

/* Responsive Design für Erfolgsgeschichten Block */
@media (max-width: 768px) {
    .erfolgsgeschichten-block {
        padding: 3rem 0;
    }
    
    .erfolgsgeschichten-header h2 {
        font-size: 2rem;
    }
    
    .erfolgsgeschichten-header .header-subtitle {
        font-size: 1.1rem;
    }
    
    .success-stories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .card-content h3 {
        font-size: 1.2rem;
    }
    
    .card-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .erfolgsgeschichten-block {
        padding: 2rem 0;
    }
    
    .erfolgsgeschichten-header {
        margin-bottom: 2rem;
    }
    
    .erfolgsgeschichten-header h2 {
        font-size: 1.8rem;
    }
    
    .erfolgsgeschichten-header .header-subtitle {
        font-size: 1rem;
    }
    
    .card-header {
        padding: 1rem 1rem 0.75rem;
    }
    
    .card-content {
        padding: 1rem;
    }
    
    .card-content h3 {
        font-size: 1.1rem;
    }
    
    .card-description {
        font-size: 0.85rem;
    }
    
    .result-item {
        font-size: 0.85rem;
    }
}

/* Animationen für Erfolgsgeschichten Block */
.success-card {
    animation: fadeInUp 0.6s ease-out;
}

.success-card:nth-child(1) { animation-delay: 0.1s; }
.success-card:nth-child(2) { animation-delay: 0.2s; }
.success-card:nth-child(3) { animation-delay: 0.3s; }

/* Print Styles für Erfolgsgeschichten Block */
@media print {
    .erfolgsgeschichten-block {
        background: white;
    }
    
    .success-card {
        box-shadow: none;
        border: 1px solid #e5e7eb;
    }
    
    .highlight-tag {
        background: #10b981 !important;
        color: white !important;
    }
}

/* ========================================
   NEXT LEVEL CTA BLOCK STYLES
   ======================================== */

/* Next Level CTA Block */
.next-level-cta-block {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f6ae42 0%, #e89a2e 100%);
    color: white;
}

/* Header Section */
.next-level-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.next-level-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    line-height: 1.2;
}

.next-level-header .header-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* CTA Buttons Section */
.cta-buttons-section {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-button {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    display: inline-block;
}

.cta-button.primary {
    background: white;
    color: #f6ae42;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
    color: #f6ae42;
    text-decoration: none;
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background: white;
    color: #f6ae42;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Services Showcase */
.services-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.service-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    display: block;
}

.service-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    display: block;
}

/* Responsive Design für Next Level CTA Block */
@media (max-width: 768px) {
    .next-level-cta-block {
        padding: 3rem 0;
    }
    
    .next-level-header h2 {
        font-size: 2rem;
    }
    
    .next-level-header .header-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-buttons-section {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .services-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .service-item {
        padding: 1rem;
    }
    
    .service-icon {
        font-size: 2rem;
    }
    
    .service-name {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .next-level-cta-block {
        padding: 2rem 0;
    }
    
    .next-level-header {
        margin-bottom: 2rem;
    }
    
    .next-level-header h2 {
        font-size: 1.8rem;
    }
    
    .next-level-header .header-subtitle {
        font-size: 1rem;
    }
    
    .cta-buttons-section {
        margin-bottom: 2rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .services-showcase {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-item {
        padding: 1rem;
    }
    
    .service-icon {
        font-size: 1.8rem;
    }
    
    .service-name {
        font-size: 0.85rem;
    }
}

/* Animationen für Next Level CTA Block */
.next-level-header h2 {
    animation: fadeInUp 0.6s ease-out;
}

.next-level-header .header-subtitle {
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.cta-buttons-section {
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.service-item {
    animation: fadeInUp 0.6s ease-out;
}

.service-item:nth-child(1) { animation-delay: 0.6s; }
.service-item:nth-child(2) { animation-delay: 0.7s; }
.service-item:nth-child(3) { animation-delay: 0.8s; }
.service-item:nth-child(4) { animation-delay: 0.9s; }
.service-item:nth-child(5) { animation-delay: 1.0s; }
.service-item:nth-child(6) { animation-delay: 1.1s; }

/* Focus Styles für Next Level CTA Block */
.cta-button:focus {
    outline: 2px solid white;
    outline-offset: 2px;
}

/* Print Styles für Next Level CTA Block */
@media print {
    .next-level-cta-block {
        background: white;
        color: black;
    }
    
    .next-level-header h2 {
        color: black;
    }
    
    .cta-button.primary {
        background: #ccc;
        color: black;
        box-shadow: none;
    }
    
    .cta-button.secondary {
        background: #ccc;
        color: black;
        border-color: black;
    }
    
    .service-item {
        background: #f0f0f0;
        color: black;
        border-color: #ccc;
    }
    
    .service-name {
        color: black;
    }
}

/* ========================================
   NEXT LEVEL HERO SECTION STYLES
   ======================================== */

/* Next Level Hero Section */
.next-level-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Hero Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Hero Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 2;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Hero Text Section */
.hero-text-section {
    text-align: center;
    margin-bottom: 4rem;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.5rem;
    color: #4b5563;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-cta-button {
    background: #3fb38e;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(63, 179, 142, 0.3);
    transform: scale(1);
}

.hero-cta-button:hover {
    background: #2d8b6f;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(63, 179, 142, 0.4);
}

/* Services Section */
.services-section {
    margin-top: 5rem;
}

.services-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Service Card */
.service-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

/* Service Icon Wrapper */
.service-icon-wrapper {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon-wrapper {
    transform: scale(1.1);
}

.service-icon-wrapper i {
    font-size: 1.75rem;
    color: white;
}

/* Service Icon Colors */
.service-icon-wrapper.webdesign {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.service-icon-wrapper.ecommerce {
    background: linear-gradient(135deg, #10b981, #059669);
}

.service-icon-wrapper.printdesign {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.service-icon-wrapper.konfiguratoren {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.service-icon-wrapper.socialmedia {
    background: linear-gradient(135deg, #ec4899, #db2777);
}

.service-icon-wrapper.beratung {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
}

/* Service Card Content */
.service-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.service-card-description {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
}

/* Responsive Design für Next Level Hero Section */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-cta-button {
        padding: 0.875rem 2rem;
        font-size: 1.125rem;
    }
    
    .services-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-card-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .services-title {
        font-size: 1.75rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-card {
        padding: 1.25rem;
    }
    
    .service-icon-wrapper {
        width: 56px;
        height: 56px;
    }
    
    .service-icon-wrapper i {
        font-size: 1.5rem;
    }
}

/* Animationen für Next Level Hero Section */
.hero-title {
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-cta-button {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.services-title {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* Focus Styles für Next Level Hero Section */
.hero-cta-button:focus {
    outline: 2px solid #3fb38e;
    outline-offset: 2px;
}

.service-card:focus {
    outline: 2px solid #3fb38e;
    outline-offset: 2px;
}

/* Print Styles für Next Level Hero Section */
@media print {
    .next-level-hero-section {
        min-height: auto;
        background: white;
    }
    
    .hero-background,
    .hero-overlay {
        display: none;
    }
    
    .hero-title {
        color: black;
    }
    
    .hero-subtitle {
        color: #333;
    }
    
    .hero-cta-button {
        background: #ccc;
        color: black;
        box-shadow: none;
    }
    
    .service-card {
        background: white;
        border: 1px solid #ccc;
        box-shadow: none;
    }
    
    .service-card-title {
        color: black;
    }
    
    .service-card-description {
        color: #333;
    }
}

/* ========================================
   MODERN FAQ SECTION STYLES
   ======================================== */

/* Modern FAQ Section */
.faq-modern-section {
    padding: 5rem 0;
    background: #f8fafc;
}

/* FAQ Header */
.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.faq-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* FAQ Modern Grid */
.faq-modern-grid {
    max-width: 800px;
    margin: 0 auto;
}

/* FAQ Modern Item */
.faq-modern-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-modern-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.faq-modern-item.active {
    box-shadow: 0 8px 25px rgba(63, 179, 142, 0.15);
    border-color: #3fb38e;
}

/* FAQ Modern Question */
.faq-modern-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background-color 0.3s ease;
}

.faq-modern-question:hover {
    background-color: #f9fafb;
}

.faq-modern-question h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    flex: 1;
    line-height: 1.4;
}

/* FAQ Modern Icon */
.faq-modern-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #3fb38e;
    color: white;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-modern-icon i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-modern-item.active .faq-modern-icon {
    background: #2d8b6f;
}

/* FAQ Modern Answer */
.faq-modern-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-modern-answer p {
    padding: 0 2rem 1.5rem 2rem;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Modern CTA Section */
.cta-modern-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #3fb38e 0%, #2d8b6f 100%);
    color: white;
}

.cta-modern-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-modern-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta-modern-content p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
}

/* CTA Modern Buttons */
.cta-modern-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-modern-button {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    display: inline-block;
}

.cta-modern-button.primary {
    background: white;
    color: #3fb38e;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.cta-modern-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
    color: #3fb38e;
    text-decoration: none;
}

.cta-modern-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-modern-button.secondary:hover {
    background: white;
    color: #3fb38e;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Leistungen Modern Grid */
.leistungen-modern-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.leistung-modern-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
}

.leistung-modern-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.leistung-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    display: block;
}

.leistung-modern-item span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    display: block;
}

/* Responsive Design für Modern FAQ Section */
@media (max-width: 768px) {
    .faq-modern-section {
        padding: 3rem 0;
    }
    
    .faq-header h2 {
        font-size: 2.5rem;
    }
    
    .faq-subtitle {
        font-size: 1.125rem;
    }
    
    .faq-modern-question {
        padding: 1.25rem 1.5rem;
    }
    
    .faq-modern-question h3 {
        font-size: 1rem;
    }
    
    .faq-modern-answer p {
        padding: 0 1.5rem 1.25rem 1.5rem;
    }
    
    .cta-modern-content h2 {
        font-size: 2rem;
    }
    
    .cta-modern-content p {
        font-size: 1.125rem;
    }
    
    .cta-modern-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-modern-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .leistungen-modern-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .faq-modern-section {
        padding: 2rem 0;
    }
    
    .faq-header {
        margin-bottom: 3rem;
    }
    
    .faq-header h2 {
        font-size: 2rem;
    }
    
    .faq-subtitle {
        font-size: 1rem;
    }
    
    .faq-modern-question {
        padding: 1rem 1.25rem;
    }
    
    .faq-modern-question h3 {
        font-size: 0.95rem;
    }
    
    .faq-modern-answer p {
        padding: 0 1.25rem 1rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .cta-modern-section {
        padding: 3rem 0;
    }
    
    .cta-modern-content h2 {
        font-size: 1.75rem;
    }
    
    .cta-modern-content p {
        font-size: 1rem;
    }
    
    .cta-modern-buttons {
        margin-bottom: 2rem;
    }
    
    .cta-modern-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .leistungen-modern-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .leistung-modern-item {
        padding: 1.25rem;
    }
    
    .leistung-icon {
        font-size: 1.75rem;
    }
    
    .leistung-modern-item span {
        font-size: 0.85rem;
    }
}

/* Animationen für Modern FAQ Section */
.faq-header h2 {
    animation: fadeInUp 0.6s ease-out;
}

.faq-subtitle {
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.faq-modern-item {
    animation: fadeInUp 0.6s ease-out;
}

.faq-modern-item:nth-child(1) { animation-delay: 0.3s; }
.faq-modern-item:nth-child(2) { animation-delay: 0.4s; }
.faq-modern-item:nth-child(3) { animation-delay: 0.5s; }
.faq-modern-item:nth-child(4) { animation-delay: 0.6s; }

.cta-modern-content h2 {
    animation: fadeInUp 0.6s ease-out;
}

.cta-modern-content p {
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.cta-modern-buttons {
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.leistung-modern-item {
    animation: fadeInUp 0.6s ease-out;
}

.leistung-modern-item:nth-child(1) { animation-delay: 0.6s; }
.leistung-modern-item:nth-child(2) { animation-delay: 0.7s; }
.leistung-modern-item:nth-child(3) { animation-delay: 0.8s; }
.leistung-modern-item:nth-child(4) { animation-delay: 0.9s; }
.leistung-modern-item:nth-child(5) { animation-delay: 1.0s; }
.leistung-modern-item:nth-child(6) { animation-delay: 1.1s; }

/* Focus Styles für Modern FAQ Section */
.faq-modern-question:focus {
    outline: 2px solid #3fb38e;
    outline-offset: 2px;
}

.cta-modern-button:focus {
    outline: 2px solid white;
    outline-offset: 2px;
}

.leistung-modern-item:focus {
    outline: 2px solid white;
    outline-offset: 2px;
}

/* Print Styles für Modern FAQ Section */
@media print {
    .faq-modern-section {
        background: white;
    }
    
    .faq-header h2 {
        color: black;
    }
    
    .faq-subtitle {
        color: #333;
    }
    
    .faq-modern-item {
        background: white;
        border: 1px solid #ccc;
        box-shadow: none;
    }
    
    .faq-modern-question h3 {
        color: black;
    }
    
    .faq-modern-answer p {
        color: #333;
    }
    
    .cta-modern-section {
        background: white;
        color: black;
    }
    
    .cta-modern-content h2 {
        color: black;
    }
    
    .cta-modern-content p {
        color: #333;
    }
    
    .cta-modern-button.primary {
        background: #ccc;
        color: black;
        box-shadow: none;
    }
    
    .cta-modern-button.secondary {
        background: #ccc;
        color: black;
        border-color: black;
    }
    
    .leistung-modern-item {
        background: #f0f0f0;
        color: black;
        border-color: #ccc;
    }
    
    .leistung-modern-item span {
        color: black;
    }
}

/* ========================================
   IMPROVED KONTAKT BANNER STYLES
   ======================================== */

/* Verbesserter Kontakt Hero Section */
.kontakt-hero-improved {
    position: relative;
    min-height: 60vh;
    overflow: hidden;
}

.kontakt-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.kontakt-hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.kontakt-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.kontakt-hero-content {
    position: absolute;
    top: calc(50% + 320px);
    left: 35%;
    transform: translate(-50%, -50%);
    z-index: 3;
    background: rgba(0, 0, 0, 0.4);
    padding: 30px;
    border-radius: 12px;
    color: #fff;
    max-width: 400px;
    text-align: left;
}

.kontakt-hero-content h1 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}

.kontakt-hero-content p {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
}

.kontakt-hero-cta {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.kontakt-cta-button {
    background-color: #f6ae42;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s ease;
}

.kontakt-cta-button.primary {
    background-color: #3fb38e;
    color: #fff;
}

.kontakt-cta-button.primary:hover {
    background-color: #2d8b6f;
    transform: translateY(-2px);
    text-decoration: none;
}

.kontakt-cta-button.secondary {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: 2px solid #fff;
}

.kontakt-cta-button.secondary:hover {
    background-color: #fff;
    color: #3fb38e;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Verbesserter Kontakt Bereich */
.kontaktbereich-improved {
    padding: 5rem 0;
    background: #f8fafc;
}

.kontakt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Kontakt Links - Info Cards */
.kontakt-links-improved {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.kontakt-info-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.kontakt-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.kontakt-icon {
    width: 60px;
    height: 60px;
    background: #3fb38e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.kontakt-info-card:hover .kontakt-icon {
    background: #2d8b6f;
    transform: scale(1.1);
}

.kontakt-icon i {
    font-size: 1.5rem;
    color: white;
}

.kontakt-info-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.kontakt-info-card p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.kontakt-info-card a {
    color: #3fb38e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.kontakt-info-card a:hover {
    color: #2d8b6f;
}

/* Kontakt Rechts - Formular */
.kontakt-rechts-improved {
    display: flex;
    align-items: flex-start;
}

.kontakt-form-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    width: 100%;
}

.kontakt-form-card h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.kontakt-form-card > p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

/* Kontakt Form */
.kontakt-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.875rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #3fb38e;
    box-shadow: 0 0 0 3px rgba(63, 179, 142, 0.1);
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

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

/* Checkbox Styling */
.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #3fb38e;
    border-color: #3fb38e;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
}

/* Submit Button */
.submit-button {
    background: #3fb38e;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.submit-button:hover {
    background: #2d8b6f;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(63, 179, 142, 0.3);
}

.submit-button.success {
    background: #10b981;
}

/* Responsive Design für Improved Kontakt Banner */
@media (max-width: 1024px) {
    .kontakt-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .kontakt-links-improved {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .kontakt-hero-content {
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        max-width: 90%;
        padding: 20px;
        background: rgba(0, 0, 0, 0.6);
    }
    
    .kontakt-hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .kontakt-cta-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .kontaktbereich-improved {
        padding: 3rem 0;
    }
    
    .kontakt-links-improved {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .kontakt-form-card {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .kontakt-hero-content {
        margin-left: 15px;
        margin-right: 15px;
        padding: 15px;
    }
    
    .kontakt-hero-content h1 {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    
    .kontakt-hero-content p {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    .kontakt-hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .kontakt-cta-button {
        width: 100%;
        max-width: 250px;
        text-align: center;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .kontaktbereich-improved {
        padding: 2rem 0;
    }
    
    .kontakt-form-card {
        padding: 1.5rem;
    }
    
    .kontakt-form-card h2 {
        font-size: 1.75rem;
    }
    
    .submit-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}



/* Tailwind CSS Konfiguration für Start Banner */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* Custom Properties für Tailwind-ähnliche Styles */
:root {
    --color-primary: #f6ae42;
    --color-secondary: #2563eb;
    --border-radius-button: 8px;
}

/* Start Banner Styles */
.start-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    max-height: 760px;
    min-height: 760px;
    overflow: hidden;
}

.start-banner-background {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.start-banner-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3);
}

.start-banner-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .start-banner-content {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .start-banner-content {
        padding: 0 2rem;
    }
}

.start-banner-text {
    max-width: 64rem;
    width: 100%;
    color: white;
}

.start-banner-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 3rem;
    line-height: 1.25;
}

@media (min-width: 640px) {
    .start-banner-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .start-banner-title {
        font-size: 3rem;
    }
}

.start-banner-services {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
    max-width: 48rem;
}

@media (min-width: 768px) {
    .start-banner-services {
        grid-template-columns: 1fr 1fr;
    }
}

.start-banner-service-item {
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 500;
}

.start-banner-checkmark {
    color: var(--color-primary);
    font-size: 1.875rem;
    margin-right: 0.75rem;
}

.start-banner-button {
    background-color: var(--color-primary);
    color: white;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: var(--border-radius-button);
    white-space: nowrap;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    transform: scale(1);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.start-banner-button:hover {
    background-color: rgba(246, 174, 66, 0.9);
    transform: scale(1.05);
    text-decoration: none;
}

/* Moderner Start Banner Block */
.start-banner-modern {
    position: relative;
    width: 100%;
    height: 100vh;
    max-height: 760px;
    min-height: 760px;
    overflow: hidden;
}

.banner-background-modern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.banner-background-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner-overlay-modern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.banner-content-modern {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .banner-content-modern {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .banner-content-modern {
        padding: 0 2rem;
    }
}

.banner-text-modern {
    max-width: 64rem;
    width: 100%;
    color: white;
}

.banner-title-modern {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 3rem;
    line-height: 1.25;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

@media (min-width: 640px) {
    .banner-title-modern {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .banner-title-modern {
        font-size: 3rem;
    }
}

.services-grid-modern {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
    max-width: 48rem;
}

@media (min-width: 768px) {
    .services-grid-modern {
        grid-template-columns: 1fr 1fr;
    }
}

.services-column-modern {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-item-modern {
    display: flex;
    align-items: center;
    font-family: 'Open Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.service-icon-modern {
    color: #f6ae42;
    font-size: 1.5rem;
    margin-right: 0.75rem;
    font-weight: bold;
}

.banner-cta-modern {
    margin-top: 2rem;
}

.banner-button-modern {
    background-color: #f6ae42;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 8px;
    white-space: nowrap;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    transform: scale(1);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    display: inline-block;
}

.banner-button-modern:hover {
    background-color: rgba(246, 174, 66, 0.9);
    transform: scale(1.05);
    text-decoration: none;
    box-shadow: 0 15px 25px -3px rgba(0, 0, 0, 0.2);
}

/* Moderner Hero Banner - Neue Struktur */
.hero-banner-modern {
    height: 100vh;
    max-height: 760px;
    position: relative;
    background: url('https://lejaa.de/wp-content/uploads/2025/07/lejaa-start-banner-marketingagentur-berlin-1.png') center/cover no-repeat;
    display: flex;
    align-items: center;
}

.hero-banner-modern::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
}

.hero-content-modern {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-left: 50px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

.hero-text-modern h1 {
    font-size: 3rem;
    line-height: 1.2;
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
    margin-bottom: 1.5rem;
}

.hero-text-modern ul {
    margin: 20px 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1.125rem;
    line-height: 1.4;
}

.hero-text-modern li {
    display: flex;
    align-items: center;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.hero-text-modern li::before {
    content: "✓";
    color: #f6ae42;
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.25rem;
}

.hero-button-modern {
    display: inline-block;
    background: #f6ae42;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
    margin-top: 1.5rem;
}

.hero-button-modern:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
    text-decoration: none;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-text-modern h1 {
        font-size: 2rem;
    }

    .hero-text-modern ul {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .hero-content-modern {
        margin: 0 20px;
        max-width: 100%;
    }
    
    .hero-banner-modern {
        height: 70vh;
        min-height: 500px;
    }
}

@media (max-width: 480px) {
    .hero-text-modern h1 {
        font-size: 1.75rem;
    }
    
    .hero-text-modern ul {
        font-size: 1rem;
    }
    
    .hero-button-modern {
        padding: 10px 20px;
        font-size: 1rem;
    }
}

/* Webseite Banner */
.webseite-banner {
    height: 100vh;
    max-height: 760px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.webseite-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.webseite-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.webseite-content {
    position: relative;
    z-index: 3;
    max-width: 700px;
    margin-left: 50px;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
}

.webseite-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    text-shadow: 0 3px 8px rgba(0,0,0,0.8), 0 1px 3px rgba(0,0,0,0.9);
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.webseite-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 6px rgba(0,0,0,0.8), 0 1px 2px rgba(0,0,0,0.9);
    opacity: 1;
    color: #ffffff;
    font-weight: 500;
}

.webseite-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.webseite-button {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
}

.webseite-button.primary {
    background: #f6ae42;
    color: #fff;
    box-shadow: 0 4px 15px rgba(246, 174, 66, 0.3);
}

.webseite-button.primary:hover {
    background: rgba(246, 174, 66, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(246, 174, 66, 0.4);
    text-decoration: none;
    color: #fff;
}

.webseite-button.secondary {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    border: 2px solid #ffffff;
    backdrop-filter: blur(10px);
    font-weight: 600;
}

.webseite-button.secondary:hover {
    background: #fff;
    color: #333;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Responsive Design für Webseite Banner */
@media (max-width: 768px) {
    .webseite-text h1 {
        font-size: 2.5rem;
    }

    .webseite-subtitle {
        font-size: 1.125rem;
    }

    .webseite-content {
        margin: 0 20px;
        max-width: 100%;
    }
    
    .webseite-banner {
        height: 70vh;
        min-height: 500px;
    }
    
    .webseite-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .webseite-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .webseite-text h1 {
        font-size: 2rem;
    }
    
    .webseite-subtitle {
        font-size: 1rem;
    }
    
    .webseite-button {
        padding: 12px 24px;
        font-size: 1rem;
    }
}

/* Referenz Slider Section */
.referenz-slider-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.referenz-header {
    text-align: center;
    margin-bottom: 3rem;
}

.referenz-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.referenz-header p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.125rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.referenz-slider {
    position: relative;
    margin-bottom: 3rem;
}

.slider-container {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slider-slide {
    min-width: 100%;
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.slide-image {
    width: 100%;
    height: 100%;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.slider-slide:hover .slide-content {
    transform: translateY(-10px);
}

.slide-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.slide-content p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    opacity: 0.9;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: all 0.3s ease;
    pointer-events: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.slider-btn:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.slider-btn svg {
    width: 20px;
    height: 20px;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border: none;
    background: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #f6ae42;
    transform: scale(1.2);
}

.dot:hover {
    background: #f6ae42;
    transform: scale(1.1);
}

/* Referenz Footer */
.referenz-footer {
    text-align: center;
}

.referenz-button {
    display: inline-block;
    background: #f6ae42;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(246, 174, 66, 0.3);
}

.referenz-button:hover {
    background: rgba(246, 174, 66, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(246, 174, 66, 0.4);
    text-decoration: none;
    color: white;
}

/* Responsive Design für Referenz Slider */
@media (max-width: 1200px) {
    .slider-slide {
        min-width: 100%;
        width: 100%;
        height: 400px;
    }
    
    .slide-content {
        padding: 1.5rem;
    }
    
    .slide-content h3 {
        font-size: 1.25rem;
    }
    
    .slide-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .referenz-header h2 {
        font-size: 2rem;
    }
    
    .referenz-header p {
        font-size: 1rem;
    }
    
    .slider-slide {
        height: 300px;
    }
    
    .slide-content {
        padding: 1rem;
    }
    
    .slide-content h3 {
        font-size: 1.125rem;
    }
    
    .slide-content p {
        font-size: 0.875rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
    }
    
    .slider-btn svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .referenz-slider-section {
        padding: 2rem 0;
    }
    
    .referenz-header h2 {
        font-size: 1.75rem;
    }
    
    .slider-slide {
        height: 250px;
    }
    
    .slider-nav {
        padding: 0 0.5rem;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
    }
}

/* Empathie Block Section */
.empathie-block {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.empathie-content {
    max-width: 900px;
    margin: 0 auto;
}

.empathie-header {
    text-align: center;
    margin-bottom: 3rem;
}

.empathie-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.empathie-text {
    margin-bottom: 3rem;
}

.problem-section {
    margin-bottom: 2.5rem;
}

.quote-block {
    background: white;
    border-left: 4px solid #f6ae42;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quote-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.quote-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.125rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
    font-style: italic;
}

.empathie-explanation {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.empathie-explanation p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.125rem;
    line-height: 1.7;
    color: #333;
    margin: 0;
}

.empathie-explanation strong {
    color: #f6ae42;
    font-weight: 600;
}

.solution-section {
    margin-top: 2rem;
}

.solution-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.solution-icon {
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.solution-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.solution-content p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.125rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

.empathie-cta {
    text-align: center;
    margin-top: 2rem;
}

.empathie-button {
    display: inline-block;
    background: #f6ae42;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(246, 174, 66, 0.3);
}

.empathie-button:hover {
    background: rgba(246, 174, 66, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(246, 174, 66, 0.4);
    text-decoration: none;
    color: white;
}

/* Responsive Design für Empathie Block */
@media (max-width: 768px) {
    .empathie-block {
        padding: 3rem 0;
    }
    
    .empathie-header h2 {
        font-size: 2rem;
    }
    
    .quote-text {
        font-size: 1rem;
    }
    
    .empathie-explanation p {
        font-size: 1rem;
    }
    
    .solution-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .solution-icon {
        margin: 0 auto 1rem;
    }
    
    .solution-content h3 {
        font-size: 1.25rem;
    }
    
    .solution-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .empathie-header h2 {
        font-size: 1.75rem;
    }
    
    .quote-block {
        padding: 1.25rem;
    }
    
    .empathie-explanation {
        padding: 1.5rem;
    }
    
    .solution-card {
        padding: 1.5rem;
    }
    
    .empathie-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

/* Prozess Block Section */
.prozess-block {
    padding: 5rem 0;
    background: white;
}

.prozess-content {
    max-width: 1000px;
    margin: 0 auto;
}

.prozess-header {
    text-align: center;
    margin-bottom: 4rem;
}

.prozess-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.prozess-header p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.125rem;
    line-height: 1.6;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.prozess-steps {
    margin-bottom: 3rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.step-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: white;
}

.step-item:nth-child(even) {
    background: white;
    border: 2px solid #f8f9fa;
}

.step-item:nth-child(even):hover {
    border-color: #f6ae42;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #f6ae42;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(246, 174, 66, 0.3);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.375rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.step-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: #f6ae42;
    font-weight: 600;
    margin-bottom: 1rem;
    font-style: italic;
}

.step-description {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.125rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

.prozess-cta {
    text-align: center;
    margin-top: 2rem;
}

.prozess-button {
    display: inline-block;
    background: #f6ae42;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(246, 174, 66, 0.3);
}

.prozess-button:hover {
    background: rgba(246, 174, 66, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(246, 174, 66, 0.4);
    text-decoration: none;
    color: white;
}

/* Responsive Design für Prozess Block */
@media (max-width: 768px) {
    .prozess-block {
        padding: 3rem 0;
    }
    
    .prozess-header h2 {
        font-size: 2rem;
    }
    
    .prozess-header p {
        font-size: 1rem;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        margin: 0 auto;
    }
    
    .step-content h3 {
        font-size: 1.25rem;
    }
    
    .step-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .prozess-header h2 {
        font-size: 1.75rem;
    }
    
    .step-item {
        padding: 1.25rem;
        margin-bottom: 2rem;
    }
    
    .step-content h3 {
        font-size: 1.125rem;
    }
    
    .step-description {
        font-size: 0.9rem;
    }
    
    .prozess-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

/* Minimalistischer Prozess Block */
.prozess {
    padding: 4rem 0;
    background: white;
}

.prozess .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.prozess h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.prozess > .container > p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.125rem;
    line-height: 1.6;
    color: #666;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.steps {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .steps {
        grid-template-columns: repeat(4, 1fr);
    }
}

.step {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: white;
}

.number {
    display: inline-block;
    background: #f6ae42;
    color: #fff;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    text-align: center;
    line-height: 2rem;
    font-weight: bold;
    margin-right: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
}

.step h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin: 0.5rem 0 1rem;
    line-height: 1.3;
}

.step p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

.step.image-only {
    padding: 0;
    background: transparent;
    overflow: hidden;
    border-radius: 12px;
    min-height: 200px;
    display: flex;
    align-items: stretch;
}

.step.image-only img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.step.image-only:hover img {
    transform: scale(1.05);
}

.cta-button {
    display: block;
    background: #f6ae42;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    text-align: center;
    max-width: 300px;
    margin: 0 auto;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(246, 174, 66, 0.3);
}

.cta-button:hover {
    background: rgba(246, 174, 66, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(246, 174, 66, 0.4);
    text-decoration: none;
    color: white;
}

/* Responsive Design für minimalen Prozess Block */
@media (max-width: 768px) {
    .prozess {
        padding: 3rem 0;
    }
    
    .prozess h2 {
        font-size: 2rem;
    }
    
    .prozess > .container > p {
        font-size: 1rem;
    }
    
    .step {
        padding: 1.5rem;
    }
    
    .step h3 {
        font-size: 1.125rem;
    }
    
    .step p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .prozess h2 {
        font-size: 1.75rem;
    }
    
    .step {
        padding: 1.25rem;
    }
    
    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

/* Stärken Section */
.strengths-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.strengths-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.strengths-section .content-wrapper {
    text-align: center;
}

.strengths-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.strengths-section > .container > .content-wrapper > p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.125rem;
    line-height: 1.6;
    color: #666;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.strengths-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .strengths-grid {
        grid-template-columns: repeat(2, minmax(300px, 1fr));
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .strengths-grid {
        grid-template-columns: repeat(3, minmax(280px, 1fr));
        gap: 2rem;
    }
}

.strength-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    min-width: 280px;
}

.strength-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.strength-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.strength-icon svg {
    width: 48px;
    height: 48px;
}

.strength-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.strength-card p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

.strengths-cta {
    text-align: center;
    margin-top: 2rem;
}

.strengths-cta .cta-button {
    display: inline-block;
    background: #f6ae42;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(246, 174, 66, 0.3);
}

.strengths-cta .cta-button:hover {
    background: rgba(246, 174, 66, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(246, 174, 66, 0.4);
    text-decoration: none;
    color: white;
}

/* Responsive Design für Stärken Section */
@media (max-width: 768px) {
    .strengths-section {
        padding: 3rem 0;
    }
    
    .strengths-section h2 {
        font-size: 2rem;
    }
    
    .strengths-section > .container > .content-wrapper > p {
        font-size: 1rem;
    }
    
    .strength-card {
        padding: 2rem 2.5rem;
    }
    
    .strength-card h3 {
        font-size: 1.125rem;
    }
    
    .strength-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .strengths-section h2 {
        font-size: 1.75rem;
    }
    
    .strength-card {
        padding: 1.5rem 2rem;
    }
    
    .strengths-cta .cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

/* CTA & FAQ Section */
.cta-faq-section {
    padding: 5rem 0;
    background: white;
}

.cta-faq-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.cta-faq-section .content-wrapper {
    display: grid;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .cta-faq-section .content-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
    }
}

/* CTA Area */
.cta-area {
    text-align: center;
}

.cta-area h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.cta-area p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.125rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    margin-bottom: 2.5rem;
}

.primary-cta-button {
    display: inline-block;
    background: #f6ae42;
    color: white;
    padding: 1.25rem 3rem;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(246, 174, 66, 0.3);
}

.primary-cta-button:hover {
    background: rgba(246, 174, 66, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(246, 174, 66, 0.4);
    text-decoration: none;
    color: white;
}

.secondary-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.secondary-contact li {
    margin: 0;
}

.secondary-contact a {
    color: #666;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    background: #f8f9fa;
}

.secondary-contact a:hover {
    color: #f6ae42;
    background: #e9ecef;
}

/* FAQ Area */
.faq-area h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.faq-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.faq-item:hover {
    background: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-left-color: #f6ae42;
    transform: translateY(-2px);
}

.faq-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.faq-item p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

/* Responsive Design für CTA & FAQ */
@media (max-width: 768px) {
    .cta-faq-section {
        padding: 3rem 0;
    }
    
    .cta-area h2 {
        font-size: 2rem;
    }
    
    .cta-area p {
        font-size: 1rem;
    }
    
    .primary-cta-button {
        padding: 1rem 2rem;
        font-size: 1.125rem;
    }
    
    .secondary-contact ul {
        flex-direction: column;
        align-items: center;
    }
    
    .faq-area h2 {
        font-size: 1.75rem;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
    
    .faq-item h3 {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .cta-area h2 {
        font-size: 1.75rem;
    }
    
    .faq-area h2 {
        font-size: 1.5rem;
    }
    
    .faq-item {
        padding: 1.25rem;
    }
    
    .faq-item h3 {
        font-size: 1rem;
    }
    
    .faq-item p {
        font-size: 0.9rem;
    }
}

/* Animationen für Improved Kontakt Banner */
.kontakt-hero-content h1 {
    animation: fadeInUp 0.6s ease-out;
}

.kontakt-hero-content p {
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.kontakt-hero-cta {
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.kontakt-info-card {
    animation: fadeInUp 0.6s ease-out;
}

.kontakt-info-card:nth-child(1) { animation-delay: 0.3s; }
.kontakt-info-card:nth-child(2) { animation-delay: 0.4s; }
.kontakt-info-card:nth-child(3) { animation-delay: 0.5s; }
.kontakt-info-card:nth-child(4) { animation-delay: 0.6s; }

.kontakt-form-card {
    animation: fadeInUp 0.6s ease-out 0.7s both;
}

/* Focus Styles für Improved Kontakt Banner */
.kontakt-cta-button:focus {
    outline: 2px solid white;
    outline-offset: 2px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
}

.submit-button:focus {
    outline: 2px solid #3fb38e;
    outline-offset: 2px;
}

/* Print Styles für Improved Kontakt Banner */
@media print {
    .kontakt-hero-improved {
        min-height: auto;
        background: white;
    }
    
    .kontakt-hero-background,
    .kontakt-hero-overlay {
        display: none;
    }
    
    .kontakt-hero-content h1 {
        color: black;
    }
    
    .kontakt-hero-content p {
        color: #333;
    }
    
    .kontakt-cta-button {
        background: #ccc;
        color: black;
        box-shadow: none;
    }
    
    .kontaktbereich-improved {
        background: white;
    }
    
    .kontakt-info-card {
        background: white;
        border: 1px solid #ccc;
        box-shadow: none;
    }
    
    .kontakt-info-card h3 {
        color: black;
    }
    
    .kontakt-info-card p {
        color: #333;
    }
    
    .kontakt-form-card {
        background: white;
        border: 1px solid #ccc;
        box-shadow: none;
    }
    
    .kontakt-form-card h2 {
        color: black;
    }
    
    .form-group label {
        color: black;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        border-color: #ccc;
        background: white;
    }
    
    .submit-button {
        background: #ccc;
        color: black;
        box-shadow: none;
    }
}

/* ========================================
   SCHMALER KONTAKT BEREICH STYLES
   ======================================== */

/* Schmaler Kontakt Bereich */
.kontaktbereich-schmal {
    padding: 4rem 0;
    background: #f8fafc;
}

.kontakt-schmal-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Kontakt Links - Schmale Info Cards */
.kontakt-links-schmal {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.kontakt-info-card-schmal {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border: 2px solid #f6ae42;
    transition: all 0.3s ease;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.kontakt-info-card-schmal:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(246, 174, 66, 0.2);
    border-color: #aa8b66;
}

.kontakt-icon-schmal {
    width: 80px;
    height: 80px;
    background: #f6ae42;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.kontakt-info-card-schmal:hover .kontakt-icon-schmal {
    background: #aa8b66;
    transform: scale(1.1);
}

.kontakt-icon-schmal i {
    font-size: 2rem;
    color: white;
}

.kontakt-info-card-schmal h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #f6ae42;
    margin-bottom: 1rem;
}

.kontakt-info-card-schmal p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.125rem;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

.kontakt-info-card-schmal a {
    color: #f6ae42;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.kontakt-info-card-schmal a:hover {
    color: #aa8b66;
}

/* Kontakt Rechts - Schmales Formular */
.kontakt-rechts-schmal {
    display: flex;
    align-items: flex-start;
}

.kontakt-form-card-schmal {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border: 1px solid #e5e7eb;
    width: 100%;
    min-height: 500px;
}

.kontakt-form-card-schmal h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.kontakt-form-card-schmal > p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

/* Schmales Kontakt Form */
.kontakt-form-schmal {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row-schmal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group-schmal {
    display: flex;
    flex-direction: column;
}

.form-group-schmal label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.4rem;
}

.form-group-schmal input,
.form-group-schmal textarea {
    padding: 0.75rem 0.875rem;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group-schmal input:focus,
.form-group-schmal textarea:focus {
    outline: none;
    border-color: #3fb38e;
    box-shadow: 0 0 0 3px rgba(63, 179, 142, 0.1);
}

.form-group-schmal input.error,
.form-group-schmal textarea.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-group-schmal textarea {
    resize: vertical;
    min-height: 80px;
}

/* Schmaler Submit Button */
.submit-button-schmal {
    background: #3fb38e;
    color: white;
    border: none;
    padding: 0.875rem 1.5rem;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.submit-button-schmal:hover {
    background: #2d8b6f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(63, 179, 142, 0.3);
}

.submit-button-schmal.success {
    background: #10b981;
}

/* Responsive Design für Schmaler Kontakt Bereich */
@media (max-width: 1024px) {
    .kontakt-schmal-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .kontakt-links-schmal {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .kontaktbereich-schmal {
        padding: 3rem 0;
    }
    
    .kontakt-links-schmal {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .kontakt-form-card-schmal {
        padding: 1.5rem;
    }
    
    .form-row-schmal {
        grid-template-columns: 1fr;
    }
    
    .kontakt-info-card-schmal {
        padding: 1.25rem;
    }
    
    .kontakt-info-card-schmal h3 {
        font-size: 1rem;
    }
    
    .kontakt-info-card-schmal p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .kontaktbereich-schmal {
        padding: 2rem 0;
    }
    
    .kontakt-form-card-schmal {
        padding: 1.25rem;
    }
    
    .kontakt-form-card-schmal h2 {
        font-size: 1.5rem;
    }
    
    .submit-button-schmal {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .kontakt-icon-schmal {
        width: 45px;
        height: 45px;
    }
    
    .kontakt-icon-schmal i {
        font-size: 1.125rem;
    }
}

/* Animationen für Schmaler Kontakt Bereich */
.kontakt-info-card-schmal {
    animation: fadeInUp 0.6s ease-out;
}

.kontakt-info-card-schmal:nth-child(1) { animation-delay: 0.3s; }
.kontakt-info-card-schmal:nth-child(2) { animation-delay: 0.4s; }
.kontakt-info-card-schmal:nth-child(3) { animation-delay: 0.5s; }
.kontakt-info-card-schmal:nth-child(4) { animation-delay: 0.6s; }

.kontakt-form-card-schmal {
    animation: fadeInUp 0.6s ease-out 0.7s both;
}

/* Focus Styles für Schmaler Kontakt Bereich */
.form-group-schmal input:focus,
.form-group-schmal textarea:focus {
    outline: none;
}

.submit-button-schmal:focus {
    outline: 2px solid #3fb38e;
    outline-offset: 2px;
}

/* Print Styles für Schmaler Kontakt Bereich */
@media print {
    .kontaktbereich-schmal {
        background: white;
    }
    
    .kontakt-info-card-schmal {
        background: white;
        border: 1px solid #ccc;
        box-shadow: none;
    }
    
    .kontakt-info-card-schmal h3 {
        color: black;
    }
    
    .kontakt-info-card-schmal p {
        color: #333;
    }
    
    .kontakt-form-card-schmal {
        background: white;
        border: 1px solid #ccc;
        box-shadow: none;
    }
    
    .kontakt-form-card-schmal h2 {
        color: black;
    }
    
    .form-group-schmal label {
        color: black;
    }
    
    .form-group-schmal input,
    .form-group-schmal textarea {
        border-color: #ccc;
        background: white;
    }
    
    .submit-button-schmal {
        background: #ccc;
        color: black;
        box-shadow: none;
    }
}

/* ===== SOCIAL MEDIA SECTIONS ===== */

/* Social Media Hero */
.social-media-hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.social-media-hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.social-media-hero .hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-media-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.85);
  z-index: 2;
}

.social-media-hero .hero-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.social-media-hero .hero-text {
  background: rgba(255, 255, 255, 0.95);
  padding: 50px 40px;
  max-width: 600px;
  border-radius: 16px;
  box-shadow: 0 0 40px rgba(0,0,0,0.2);
}

.social-media-hero .hero-subtitle {
  color: #f6ae42;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-size: 15px;
}

.social-media-hero h1 {
  font-size: 34px;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 18px;
  color: #222;
}

.social-media-hero .hero-description {
  font-size: 17px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 28px;
}

.social-media-hero .hero-cta-button {
  display: inline-block;
  background-color: #f6ae42;
  color: black;
  font-weight: bold;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
}

.social-media-hero .hero-cta-button:hover {
  background-color: #e9a13a;
  transform: translateY(-2px);
}

/* Social Media Probleme */
.social-media-probleme {
  padding: 80px 20px;
  background-color: #f9f9f9;
}

.social-media-probleme .container {
  max-width: 1100px;
  margin: 0 auto;
}

.social-media-probleme h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
}

.social-media-probleme .probleme-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.social-media-probleme .problem-card {
  flex: 1 1 300px;
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

.social-media-probleme .problem-card h3 {
  color: #f6ae42;
  font-size: 20px;
  margin-bottom: 10px;
}

.social-media-probleme .problem-card p {
  color: #333;
  font-size: 16px;
}

/* Social Media Slider */
.social-media-slider-section {
  padding: 60px 0;
  background-color: #fff;
}

.social-media-slider-section .container {
  max-width: 1200px;
  margin: auto;
}

.social-media-slider-section .slider-header {
  text-align: center;
  margin-bottom: 40px;
}

.social-media-slider-section .slider-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.social-media-slider-section .slider-header p {
  font-size: 18px;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
}

.social-media-slider-section .social-slider {
  position: relative;
}

.social-media-slider-section .slider-container {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.social-media-slider-section .slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

.social-media-slider-section .slider-slide {
  min-width: 100%;
  width: 100%;
  flex-shrink: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  padding: 40px;
  background: white;
}

.social-media-slider-section .slide-image {
  flex: 1 1 500px;
}

.social-media-slider-section .slide-image img {
  width: 100%;
  border-radius: 10px;
}

.social-media-slider-section .slide-content {
  flex: 1 1 500px;
}

.social-media-slider-section .slide-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #333;
}

.social-media-slider-section .slide-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
}

.social-media-slider-section .slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
}

.social-media-slider-section .slider-btn {
  background: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
  pointer-events: auto;
}

.social-media-slider-section .slider-btn:hover {
  background: #f6ae42;
  color: white;
  transform: scale(1.1);
}

.social-media-slider-section .slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.social-media-slider-section .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.social-media-slider-section .dot.active {
  background: #f6ae42;
}

.social-media-slider-section .slider-footer {
  text-align: center;
  margin-top: 40px;
}

.social-media-slider-section .slider-button {
  display: inline-block;
  background: #f6ae42;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.social-media-slider-section .slider-button:hover {
  background: #e9a13a;
  transform: translateY(-2px);
}

/* Social Media Vorteile */
.social-media-vorteile {
  background-color: #fff;
  padding: 80px 20px;
}

.social-media-vorteile .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.social-media-vorteile h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
}

.social-media-vorteile .vorteile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: left;
}

.social-media-vorteile .vorteil-card {
  background: #f6f6f6;
  padding: 30px;
  border-radius: 16px;
}

.social-media-vorteile .vorteil-card h3 {
  color: #f6ae42;
  font-size: 20px;
  margin-bottom: 10px;
}

.social-media-vorteile .vorteil-card p {
  font-size: 16px;
  color: #333;
}

/* Social Media Warum Wir */
.social-media-warum-wir {
  background-color: #f9f9f9;
  padding: 100px 20px;
}

.social-media-warum-wir .container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.social-media-warum-wir h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
}

.social-media-warum-wir .warum-wir-intro {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 60px;
  color: #666;
}

.social-media-warum-wir .warum-wir-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.social-media-warum-wir .warum-wir-card {
  flex: 1 1 250px;
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.social-media-warum-wir .warum-wir-card h3 {
  color: #f6ae42;
  font-size: 20px;
  margin-bottom: 10px;
}

.social-media-warum-wir .warum-wir-card p {
  font-size: 16px;
  color: #333;
}

/* Social Media Prozess */
.social-media-prozess {
  background-color: #fff;
  padding: 80px 20px;
}

.social-media-prozess .container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.social-media-prozess h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
}

.social-media-prozess .prozess-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.social-media-prozess .step {
  background: #f9f9f9;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  position: relative;
}

.social-media-prozess .step .number {
  display: inline-block;
  background: #f6ae42;
  color: #fff;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  text-align: center;
  line-height: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 18px;
}

.social-media-prozess .step h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.social-media-prozess .step p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

/* Social Media Pakete */
.social-media-pakete {
  background-color: #f9f9f9;
  padding: 100px 20px;
}

.social-media-pakete .container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.social-media-pakete h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}

.social-media-pakete .pakete-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.social-media-pakete .paket-card {
  background: #fff;
  border: 1px solid #ddd;
  padding: 30px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.social-media-pakete .paket-card.featured {
  border: 3px solid #f6ae42;
  transform: scale(1.05);
}

.social-media-pakete .paket-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.social-media-pakete .paket-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #333;
}

.social-media-pakete .paket-subtitle {
  margin-bottom: 20px;
  color: #777;
  font-size: 14px;
}

.social-media-pakete .paket-features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  text-align: left;
}

.social-media-pakete .paket-features li {
  padding: 8px 0;
  color: #333;
  font-size: 14px;
}

.social-media-pakete .paket-price {
  font-size: 20px;
  font-weight: bold;
  color: #f6ae42;
  margin-top: 20px;
}

/* Social Media CTA */
.social-media-cta {
  background-color: #f6ae42;
  padding: 100px 20px;
  color: #000;
  text-align: center;
}

.social-media-cta .container {
  max-width: 1100px;
  margin: 0 auto;
}

.social-media-cta h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.social-media-cta p {
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.social-media-cta .cta-button {
  display: inline-block;
  background-color: #000;
  color: #fff;
  padding: 16px 32px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.social-media-cta .cta-button:hover {
  background-color: #333;
  transform: translateY(-2px);
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
  .social-media-hero .hero-text {
    padding: 30px 20px;
  }
  
  .social-media-hero h1 {
    font-size: 28px;
  }
  
  .social-media-probleme .probleme-grid {
    flex-direction: column;
  }
  
  .social-media-slider-section .slider-slide {
    flex-direction: column;
    padding: 20px;
  }
  
  .social-media-vorteile .vorteile-grid {
    grid-template-columns: 1fr;
  }
  
  .social-media-warum-wir .warum-wir-grid {
    flex-direction: column;
  }
  
  .social-media-prozess .prozess-steps {
    grid-template-columns: 1fr;
  }
  
  .social-media-pakete .pakete-grid {
    grid-template-columns: 1fr;
  }
  
  .social-media-pakete .paket-card.featured {
    transform: none;
  }
}

/* Social Media Marketing Block */
.social-media-marketing-block {
  background-color: #f9f9f9;
  padding: 80px 20px;
  text-align: center;
}

.social-media-marketing-block .marketing-content {
  max-width: 1200px;
  margin: 0 auto;
}

.social-media-marketing-block .marketing-text {
  max-width: 800px;
  margin: 0 auto;
}

.social-media-marketing-block .marketing-subtitle {
  color: #f6ae42;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-size: 15px;
}

.social-media-marketing-block h1 {
  font-size: 34px;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 18px;
  color: #222;
}

.social-media-marketing-block .marketing-description {
  font-size: 17px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 28px;
}

.social-media-marketing-block .marketing-cta-button {
  display: inline-block;
  background-color: #f6ae42;
  color: black;
  font-weight: bold;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
}

.social-media-marketing-block .marketing-cta-button:hover {
  background-color: #e9a13a;
  transform: translateY(-2px);
}

.social-media-marketing-block .highlight {
  color: #f6ae42;
}

/* Responsive Anpassungen für Social Media Marketing Block */
@media (max-width: 768px) {
  .social-media-marketing-block .marketing-text {
    padding: 30px 20px;
  }
  
  .social-media-marketing-block h1 {
    font-size: 28px;
  }
  
  .social-media-marketing-block .marketing-description {
    font-size: 16px;
  }
}

/* ===== GLAS-KONFIGURATOR BLOCK ===== */

/* Glas-Konfigurator Block */
.glas-konfigurator-block {
  background-color: #fff;
  padding: 80px 20px;
  font-family: 'Open Sans', sans-serif;
}

.glas-konfigurator-block .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.glas-konfigurator-block .konfigurator-header {
  text-align: center;
  margin-bottom: 60px;
}

.glas-konfigurator-block .konfigurator-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
  line-height: 1.2;
}

.glas-konfigurator-block .konfigurator-intro {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
}

.glas-konfigurator-block .konfigurator-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.glas-konfigurator-block .konfigurator-card {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.glas-konfigurator-block .konfigurator-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-color: #f6ae42;
  background: #fff;
}

.glas-konfigurator-block .card-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
  line-height: 1;
}

.glas-konfigurator-block .konfigurator-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
  line-height: 1.3;
}

.glas-konfigurator-block .konfigurator-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

.glas-konfigurator-block .konfigurator-cta {
  text-align: center;
  margin-top: 20px;
}

.glas-konfigurator-block .konfigurator-button {
  display: inline-block;
  background-color: #f6ae42;
  color: #333;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  border: none;
  cursor: pointer;
}

.glas-konfigurator-block .konfigurator-button:hover {
  background-color: #e9a13a;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(246, 174, 66, 0.3);
  color: #333;
  text-decoration: none;
}

/* Responsive Anpassungen für Glas-Konfigurator */
@media (max-width: 1024px) {
  .glas-konfigurator-block .konfigurator-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .glas-konfigurator-block {
    padding: 60px 20px;
  }
  
  .glas-konfigurator-block .konfigurator-header h2 {
    font-size: 2rem;
  }
  
  .glas-konfigurator-block .konfigurator-intro {
    font-size: 1rem;
  }
  
  .glas-konfigurator-block .konfigurator-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .glas-konfigurator-block .konfigurator-card {
    padding: 25px 20px;
  }
  
  .glas-konfigurator-block .card-icon {
    font-size: 2.5rem;
  }
  
  .glas-konfigurator-block .konfigurator-card h3 {
    font-size: 1.125rem;
  }
  
  .glas-konfigurator-block .konfigurator-card p {
    font-size: 0.9rem;
  }
  
  .glas-konfigurator-block .konfigurator-button {
    padding: 14px 28px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .glas-konfigurator-block {
    padding: 40px 15px;
  }
  
  .glas-konfigurator-block .container {
    padding: 0 15px;
  }
  
  .glas-konfigurator-block .konfigurator-header h2 {
    font-size: 1.75rem;
  }
  
  .glas-konfigurator-block .konfigurator-intro {
    font-size: 0.9rem;
  }
  
  .glas-konfigurator-block .konfigurator-card {
    padding: 20px 15px;
  }
  
  .glas-konfigurator-block .card-icon {
    font-size: 2rem;
  }
  
  .glas-konfigurator-block .konfigurator-card h3 {
    font-size: 1rem;
  }
  
  .glas-konfigurator-block .konfigurator-card p {
    font-size: 0.875rem;
  }
  
  .glas-konfigurator-block .konfigurator-button {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
}

/* Flyer-Projekt Bereich */
.flyer-projekt-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 5rem 0;
  font-family: 'Open Sans', sans-serif;
}

.flyer-projekt-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.flyer-projekt-header {
  text-align: center;
  margin-bottom: 4rem;
}

.flyer-projekt-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.flyer-projekt-header p {
  font-size: 1.125rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.flyer-kontakt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.flyer-kontakt-card {
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.flyer-kontakt-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  border-color: #f6ae42;
}

.flyer-kontakt-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.flyer-kontakt-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

.flyer-kontakt-card p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 1.5rem;
}

.flyer-kontakt-card a {
  display: inline-block;
  background-color: #f6ae42;
  color: #333;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.flyer-kontakt-card a:hover {
  background-color: #e9a13a;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(246, 174, 66, 0.3);
  color: #333;
  text-decoration: none;
}

.flyer-cta-buttons {
  text-align: center;
  margin-bottom: 4rem;
}

.flyer-cta-primary {
  display: inline-block;
  background-color: #f6ae42;
  color: #333;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.125rem;
  margin-right: 1rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.flyer-cta-primary:hover {
  background-color: #e9a13a;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(246, 174, 66, 0.3);
  color: #333;
  text-decoration: none;
}

.flyer-cta-secondary {
  display: inline-block;
  background-color: transparent;
  color: #f6ae42;
  font-weight: 600;
  padding: 1rem 2rem;
  border: 2px solid #f6ae42;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.125rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.flyer-cta-secondary:hover {
  background-color: #f6ae42;
  color: #333;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(246, 174, 66, 0.3);
  text-decoration: none;
}

.flyer-services-section {
  background: #fff;
  padding: 4rem 0;
  margin-top: 2rem;
}

.flyer-services-header {
  text-align: center;
  margin-bottom: 3rem;
}

.flyer-services-header h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
}

.flyer-services-header p {
  font-size: 1.125rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.flyer-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.flyer-service-card {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.flyer-service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.1);
  border-color: #f6ae42;
  background: #fff;
}

.flyer-service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.flyer-service-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.75rem;
}

.flyer-service-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

/* Responsive Anpassungen für Flyer-Projekt */
@media (max-width: 768px) {
  .flyer-projekt-section {
    padding: 3rem 0;
  }
  
  .flyer-projekt-header h2 {
    font-size: 2rem;
  }
  
  .flyer-projekt-header p {
    font-size: 1rem;
  }
  
  .flyer-kontakt-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .flyer-kontakt-card {
    padding: 1.5rem;
  }
  
  .flyer-services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .flyer-service-card {
    padding: 1.5rem;
  }
  
  .flyer-cta-primary,
  .flyer-cta-secondary {
    display: block;
    width: 100%;
    text-align: center;
    margin-right: 0;
  }
}

@media (max-width: 480px) {
  .flyer-projekt-container {
    padding: 0 1rem;
  }
  
  .flyer-projekt-header h2 {
    font-size: 1.75rem;
  }
  
  .flyer-services-header h3 {
    font-size: 1.75rem;
  }
  
  .flyer-kontakt-card {
    padding: 1.25rem;
  }
  
  .flyer-service-card {
    padding: 1.25rem;
  }
  
  .flyer-kontakt-icon {
    font-size: 2.5rem;
  }
  
  .flyer-service-icon {
    font-size: 2rem;
  }
}