/* Grundlegende Reset & Variablen */
:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #1e40af;
    --accent: #f59e0b;
    --dark: #1e293b;
    --light: #f8fafc;
    --gray: #64748b;
    --gray-light: #e2e8f0;
    --transition: all 0.3s ease;
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius: 12px;
    --max-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', system-ui, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 20px 0;
    transition: var(--transition);
}

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

.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo sup {
    font-size: 0.6em;
    top: -0.5em;
}

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

nav a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
    display: inline-flex;
    align-items: center;
}

nav a:hover {
    color: var(--primary);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

/* Hervorgehobener erster Buchstabe in Navigation */
.nav-first-letter {
    color: var(--primary);
    font-weight: 800;
    font-size: 1.2em;
    margin-right: 2px;
    transition: var(--transition);
}

nav a:hover .nav-first-letter {
    color: var(--secondary);
    transform: scale(1.1);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
    padding: 5px;
}

.menu-line {
    width: 25px;
    height: 3px;
    background-color: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero Sektion */
.hero {
    padding: 180px 0 120px;
    background: linear-gradient(135deg, #f0f9ff 0%, #fef2ff 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(30, 64, 175, 0.1) 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark);
}

.hero p {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 40px;
    max-width: 600px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 32px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 20px -5px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background-color: rgba(37, 99, 235, 0.05);
    transform: translateY(-3px);
}

/* Features Sektion */
.features {
    padding: 100px 0;
    background-color: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: 700;
    color: var(--dark);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 2px;
}

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

.feature-card {
    background-color: white;
    border-radius: var(--radius);
    padding: 40px 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border: 1px solid var(--gray-light);
    scroll-margin-top: 120px;
}

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

.feature-card:target {
    animation: highlight 2s ease;
    border: 2px solid var(--primary);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    fill: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.feature-card p {
    color: var(--gray);
}

/* Projekte Sektion */
.projects {
    padding: 100px 0;
    background-color: #f8fafc;
}

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

.project-card {
    background-color: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    scroll-margin-top: 120px;
}

.project-card:target {
    animation: highlight 2s ease;
    border: 2px solid var(--primary);
}

@keyframes highlight {
    0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(37, 99, 235, 0); }
    100% { box-shadow: var(--shadow); }
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-image {
    height: 180px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-image svg {
    width: 64px;
    height: 64px;
    fill: var(--primary);
}

.project-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.project-content p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 0.95rem;
    flex-grow: 1;
}

.project-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-size: inherit;
    font-family: inherit;
    text-align: left;
    margin-top: auto;
}

.project-link:hover {
    gap: 12px;
}

.arrow {
    font-size: 1.2rem;
    transition: var(--transition);
}

.project-link:hover .arrow {
    transform: translateX(5px);
}

/* Aufklappbarer Text */
.expanded-text {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.3s ease;
    padding: 0;
    margin-top: 0;
    opacity: 0;
}

.expanded-text.active {
    max-height: 2000px; /* Sehr hoher Wert statt none */
    padding-top: 20px;
    margin-top: 15px;
    border-top: 1px solid var(--gray-light);
    opacity: 1;
}

.expanded-text p {
    margin-bottom: 15px;
    color: var(--gray);
    line-height: 1.6;
}

.expanded-text ul {
    margin-left: 20px;
    margin-bottom: 15px;
    color: var(--gray);
}

.expanded-text li {
    margin-bottom: 8px;
    position: relative;
}

.expanded-text li:before {
    content: "•";
    color: var(--primary);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/* Newsletter */
.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    text-align: center;
}

.newsletter h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.newsletter p {
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 10px;
}

.newsletter-input {
    flex: 1;
    padding: 16px 20px;
    border-radius: var(--radius);
    border: none;
    font-size: 16px;
    box-shadow: var(--shadow);
}

.newsletter-input:focus {
    outline: 2px solid var(--primary-dark);
    outline-offset: 2px;
}

/* Kontaktformular (NEU) */
.contact-form-section {
    padding: 80px 0;
    background-color: white;
}

.contact-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: #94a3b8; /* Direkter Hex-Wert */
    /* Oder für mehr Flexibilität mit Transparenz: */
    /* color: rgba(148, 163, 184, 0.9); */
    font-size: 1.1rem;
    line-height: 1.7;
}
.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius);
    font-size: 16px;
    transition: var(--transition);
    background-color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #dc2626;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.required {
    color: #dc2626;
}

.error-message {
    color: #dc2626;
    font-size: 0.85rem;
    margin-top: 5px;
    min-height: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.error-message.show {
    opacity: 1;
}

.privacy-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background-color: #f8fafc;
    border-radius: var(--radius);
    border: 1px solid var(--gray-light);
}

.privacy-checkbox input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.privacy-checkbox label {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.5;
    margin: 0;
    font-weight: normal;
}

.privacy-checkbox label a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.privacy-checkbox label a:hover {
    text-decoration: underline;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.contact-submit {
    position: relative;
    min-width: 180px;
    padding: 16px 40px;
}

.submit-spinner {
    margin-left: 10px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: var(--radius);
    font-weight: 500;
    text-align: center;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.form-message.show {
    opacity: 1;
    transform: translateY(0);
}

.form-message.success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.form-message.error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    padding: 60px 0 30px;
}

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

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: white;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 2px;
}

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

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

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-links a .nav-first-letter {
    color: var(--accent);
    font-weight: 700;
    margin-right: 4px;
    transition: var(--transition);
}

.footer-links a:hover .nav-first-letter {
    color: var(--primary);
    transform: scale(1.1);
}

.footer-links span {
    color: #cbd5e1;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    font-weight: bold;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    font-size: 0.9rem;
}

.copyright sup {
    font-size: 0.6em;
    top: -0.5em;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu-btn.active .menu-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active .menu-line:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active .menu-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: white;
        padding: 20px;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .hero {
        padding: 150px 0 80px;
        text-align: center;
    }

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

    .hero p {
        font-size: 1.1rem;
    }

    .cta-buttons {
        justify-content: center;
    }

    .newsletter-form {
        flex-direction: column;
    }
    
    .features-grid, .projects-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-card:target, .project-card:target {
        animation: highlight-mobile 2s ease;
    }
    
    @keyframes highlight-mobile {
        0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7); }
        70% { box-shadow: 0 0 0 5px rgba(37, 99, 235, 0); }
        100% { box-shadow: var(--shadow); }
    }
    
    .privacy-checkbox {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .privacy-checkbox input[type="checkbox"] {
        align-self: flex-start;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .feature-card, .project-card {
        padding: 30px 20px;
    }
    
    .btn {
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .nav-first-letter {
        font-size: 1.1em;
    }
    
    .logo {
        font-size: 22px;
    }
    
    .contact-description {
        font-size: 1rem;
    }
/* Stile für externe Links in Projekt- und Feature-Karten */
.project-link.external-link,
.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: var(--transition);
}

.project-link.external-link:hover,
.feature-link:hover {
    gap: 12px;
}

/* Gemeinsame Stile für alle Projekt-Links/Buttons */
.project-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-size: inherit;
    font-family: inherit;
}

.project-link:hover {
    gap: 12px;
}

.arrow {
    font-size: 1.2rem;
    transition: var(--transition);
}

.project-link:hover .arrow,
.project-link.external-link:hover .arrow,
.feature-link:hover .arrow {
    transform: translateX(5px);
}

/* Lockere Layout-Anpassungen */
.main-content {
    padding: 100px 0;
    line-height: 1.7;
}

.content-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    color: var(--dark);
    font-weight: 700;
}

.content-section {
    margin-bottom: 60px;
    background: white;
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.content-section:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.content-section h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--primary);
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gray-light);
}

.section-content {
    font-size: 1.1rem;
    color: var(--dark);
}

.section-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.section-content ul {
    margin-left: 25px;
    margin-bottom: 25px;
}

.section-content li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 10px;
}

.section-content li:before {
    content: "▸";
    color: var(--primary);
    position: absolute;
    left: -20px;
    font-weight: bold;
}

.cta-section {
    text-align: center;
    background: linear-gradient(135deg, #f0f9ff 0%, #e6f7ff 100%);
    padding: 60px 40px;
    border-radius: var(--radius);
    margin-top: 80px;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.cta-section p {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.cta-section .btn {
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Bessere Abstände für mobile Geräte */
@media (max-width: 768px) {
    .main-content {
        padding: 70px 0 40px;
    }
    
    .content-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .content-section {
        padding: 25px 20px;
        margin-bottom: 40px;
    }
    
    .content-section h3 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .section-content {
        font-size: 1rem;
    }
    
    .cta-section {
        padding: 40px 20px;
        margin-top: 50px;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
    }
    
    .cta-section p {
        font-size: 1.1rem;
    }
}

/* Smooth scroll für Anchors */
:target {
    scroll-margin-top: 100px;
}

/* Verbesserte Lesbarkeit */
p, li {
    color: #334155; /* Dunkleres Grau für besseren Kontrast */
}

strong {
    color: var(--primary);
    font-weight: 700;
}

/* Fehlende Klassen für externe Links */
.project-link.external-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    margin-top: 15px;
}

.project-link.external-link:hover {
    gap: 12px;
    color: var(--primary-dark);
}

.feature-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    margin-top: 15px;
}

.feature-link:hover {
    gap: 12px;
    color: var(--primary-dark);
}
}

/* Content Sektionen - Mehr Luft */
.main-content {
    padding: 120px 0; /* Von 100px erhöht */
    line-height: 1.8; /* Von 1.7 erhöht */
}

.content-title {
    font-size: 2.8rem; /* Von 2.5rem erhöht */
    margin-bottom: 70px; /* Von 50px erhöht */
    text-align: center;
    color: var(--dark);
    font-weight: 700;
    letter-spacing: -0.5px; /* Leichter Buchstabenabstand */
}

.content-section {
    margin-bottom: 80px; /* Von 60px erhöht */
    background: white;
    padding: 50px 45px; /* Von 40px erhöht */
    border-radius: var(--radius);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.07); /* Weicherer Schatten */
    transition: var(--transition);
}

.content-section:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); /* Größerer Hover-Effekt */
    transform: translateY(-5px); /* Von -2px erhöht */
}

.content-section h3 {
    font-size: 2rem; /* Von 1.8rem erhöht */
    margin-bottom: 35px; /* Von 25px erhöht */
    color: var(--primary);
    padding-bottom: 20px; /* Von 15px erhöht */
    border-bottom: 3px solid var(--gray-light); /* Von 2px erhöht */
}

.section-content {
    font-size: 1.15rem; /* Von 1.1rem erhöht */
    color: var(--dark);
}

.section-content p {
    margin-bottom: 25px; /* Von 20px erhöht */
    line-height: 1.8;
}

.section-content ul {
    margin-left: 30px; /* Von 25px erhöht */
    margin-bottom: 30px; /* Von 25px erhöht */
}

.section-content li {
    margin-bottom: 15px; /* Von 12px erhöht */
    padding-left: 15px; /* Von 10px erhöht */
    line-height: 1.7;
}
