<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Enhanced styling for both English and German landing pages */

/* Basic structure and spacing */
.landing-content {
    max-width: 850px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    line-height: 1.6;
}

.landing-content h1 {
    font-size: 2.4rem;
    margin-bottom: 1.75rem;
    line-height: 1.3;
    color: var(--heading-color);
    text-align: center;
}

.landing-content h2 {
    font-size: 1.8rem;
    margin: 3rem 0 1.5rem;
}

.landing-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.lead-text {
    font-size: 1.2rem !important;
    line-height: 1.5;
    color: var(--text-secondary);
    margin: 1.5rem auto 2.5rem;
    max-width: 700px;
    text-align: center;
}

/* Benefit/Feature box styling with improved visibility */
.benefit-box,
.de-feature-box {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 15px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid var(--accent-color);
}

.benefit-box:hover,
.de-feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px var(--shadow-color);
}

.benefit-box h3,
.de-feature-box h3 {
    color: var(--accent-color);
    margin-top: 0;
    margin-bottom: 1.25rem;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Features list styling with better spacing */
.features-list {
    list-style-type: none;
    padding: 0;
}

.features-list li {
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li i {
    color: var(--accent-color);
    margin-right: 1rem;
    min-width: 20px;
    font-size: 1.1rem;
}

.features-list strong {
    margin-right: 0.5rem;
}

/* Enhanced CTA button styling */
.cta-button,
.de-cta-button {
    text-align: center;
    margin: 3rem 0;
}

.cta-button .btn-primary,
.de-cta-button .btn-primary {
    font-size: 1.25rem;
    padding: 0.9rem 2.5rem;
    transition: all 0.3s ease;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(var(--accent-rgb), 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.cta-button .btn-primary:hover,
.de-cta-button .btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(var(--accent-rgb), 0.5);
}

.cta-button .btn-primary i,
.de-cta-button .btn-primary i {
    font-size: 1.2rem;
}

/* Section styling with better visual separation */
.section-title {
    color: var(--heading-color);
    margin: 3.5rem 0 2rem;
    position: relative;
    padding-bottom: 0.75rem;
    text-align: center;
    font-size: 1.8rem;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

/* Step boxes styling with better spacing */
.how-it-works,
.de-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.step-box,
.de-step {
    flex: 1;
    min-width: 250px;
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    box-shadow: 0 4px 15px var(--shadow-color);
    transition: all 0.3s ease;
    margin-top: 1.2rem;
}

.step-box:hover,
.de-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px var(--shadow-color);
}

.step-box h3,
.de-step h3 {
    margin-top: 0.5rem;
    color: var(--accent-color);
    font-size: 1.3rem;
}

/* Enhanced step number styling */
.step-number {
    position: absolute;
    top: -20px;
    left: -15px;
    background: var(--accent-color);
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 3px 8px rgba(var(--accent-rgb), 0.5);
}

/* German-specific styling with better spacing */
.de-hero-section {
    text-align: center;
    margin-bottom: 4rem;
    padding: 1rem;
}

.de-hero-section h1 {
    font-size: 2.4rem;
    margin-bottom: 1.75rem;
    line-height: 1.3;
}

.de-hero-section p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

/* Enhanced use case styling for German page */
.de-use-cases {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin: 2.5rem 0;
}

.de-use-case {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px var(--shadow-color);
    display: flex;
    align-items: flex-start;
    transition: all 0.3s ease;
    border-top: 5px solid var(--accent-color);
}

.de-use-case:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px var(--shadow-color);
}

.de-use-case-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-right: 1.75rem;
}

.de-use-case-content h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--heading-color);
    font-size: 1.3rem;
}

.de-use-case-content p {
    margin-bottom: 0;
    line-height: 1.6;
}

/* Enhanced FAQ section styling */
.de-faq {
    margin: 2.5rem 0;
}

.de-faq-item {
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px var(--shadow-color);
}

.de-faq-question {
    background: var(--bg-secondary);
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--heading-color);
    transition: background 0.3s ease;
    font-size: 1.1rem;
}

.de-faq-question:hover {
    background: var(--bg-highlight);
}

.de-faq-question i {
    transition: transform 0.3s ease;
    color: var(--accent-color);
}

.de-faq-item.active .de-faq-question i {
    transform: rotate(180deg);
}

.de-faq-answer {
    background: var(--bg-highlight);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0;
}

.de-faq-item.active .de-faq-answer {
    padding: 1.5rem;
    max-height: 500px;
    opacity: 1;
}

.de-faq-answer p {
    margin: 0;
    line-height: 1.7;
}

/* Animation for scroll elements with better timing */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Dark mode specific adjustments */
.dark-theme .benefit-box,
.dark-theme .de-feature-box,
.dark-theme .step-box,
.dark-theme .de-step,
.dark-theme .de-use-case,
.dark-theme .de-faq-question {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.dark-theme .benefit-box:hover,
.dark-theme .de-feature-box:hover,
.dark-theme .step-box:hover,
.dark-theme .de-step:hover,
.dark-theme .de-use-case:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Media queries for responsive design with better spacing */
@media (max-width: 768px) {
    .landing-content h1 {
        font-size: 2rem;
    }
    
    .landing-content {
        padding: 2rem 1rem;
    }
    
    .de-use-cases {
        grid-template-columns: 1fr;
    }
    
    .how-it-works, 
    .de-steps {
        flex-direction: column;
    }
    
    .step-box, 
    .de-step {
        margin-bottom: 2.5rem;
        margin-top: 2rem;
    }
    
    .de-hero-section h1 {
        font-size: 1.8rem;
    }
    
    .de-hero-section p {
        font-size: 1.1rem;
    }
    
    .lead-text {
        font-size: 1.1rem !important;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    .cta-button .btn-primary,
    .de-cta-button .btn-primary {
        width: 100%;
        padding: 0.85rem 1.5rem;
        font-size: 1.1rem;
    }
    
    .de-use-case {
        flex-direction: column;
        padding: 1.5rem;
    }
    
    .de-use-case-icon {
        margin-bottom: 1rem;
        margin-right: 0;
        text-align: center;
        width: 100%;
    }
    
    .landing-content {
        padding: 1.5rem 0.75rem;
    }
    
    .benefit-box,
    .de-feature-box {
        padding: 1.5rem;
    }
    
    .step-number {
        top: -15px;
        left: -10px;
        width: 35px;
        height: 35px;
    }
}
</pre></body></html>