/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #0a0a0a;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    font-weight: 800;
    font-size: 1.5rem;
    color: #ffffff;
}

.logo-image {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    border-radius: 12px;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #888;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ffffff;
}

.download-btn {
    background: #ffffff;
    color: #000000 !important;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Mobile-First Video Gallery */
.video-gallery {
    padding: 140px 0 60px;
    background: #0a0a0a;
}

.video-gallery-header {
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.video-carousel-container {
    margin-top: 40px;
    position: relative;
}

.video-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
    scroll-snap-type: x mandatory;
}

.video-carousel::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn-left {
    left: 20px;
}

.carousel-btn-right {
    right: 20px;
}

/* Video Controls */
.video-controls {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 15;
}

.sound-toggle-btn {
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.sound-toggle-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.sound-toggle-btn.active {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.sound-toggle-btn.active i {
    color: #4ecdc4;
}

.carousel-indicator {
    text-align: center;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

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

.video-item {
    position: relative;
    width: 60vw;
    /* 60% of viewport width */
    height: 33.75vw;
    /* 16:9 aspect ratio (60vw * 9/16 = 33.75vw) */
    border-radius: 12px;
    overflow: hidden;
    background: #1a1a1a;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    scroll-snap-align: center;
}

.video-item:hover {
    transform: translateY(-5px);
}

.video-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    opacity: 1 !important;
    transition: opacity 0.5s ease;
    background: transparent !important;
}

.video-item video[src] {
    opacity: 1 !important;
}

/* Loading state for videos */
.video-item::before {
    display: none;
}

.video-item:not(.loaded)::before {
    display: none;
}

@keyframes videoLoading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Hero Section */
.hero {
    padding: 40px 0 60px;
    background: #0a0a0a;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 32px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #ffffff;
}

.highlight {
    background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: #888;
    margin-bottom: 48px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.app-store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #000000;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    border: 1px solid #333333;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.app-store-btn:hover {
    background: #1a1a1a;
    transform: translateY(-1px);
}

.app-store-btn i {
    font-size: 2rem;
    color: #ffffff;
}

.app-store-btn div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.app-store-btn .small {
    font-size: 0.75rem;
    opacity: 0.8;
    font-weight: 400;
}

.app-store-btn .large {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: -2px;
}

.demo-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.demo-btn:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: #888;
    margin-top: 4px;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #0a0a0a;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #ffffff;
    line-height: 1.2;
}

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

.feature-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.flow-step {
    text-align: center;
    max-width: 200px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #ffffff;
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    margin: 0 auto 16px;
}

.flow-step h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
}

.flow-step p {
    color: #888;
    font-size: 0.9rem;
}

.flow-arrow {
    font-size: 2rem;
    color: #888;
    font-weight: 300;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px 32px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

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

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

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

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-card {
    text-align: center;
}

.stat-card .stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff;
    display: block;
    margin-bottom: 8px;
}

.stat-card .stat-label {
    font-size: 1rem;
    color: #888;
}

/* Before/After Section */
.before-after {
    padding: 80px 0;
    background: #0a0a0a;
}

.transformation-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.showcase-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.before-after-container {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.before-image,
.after-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.after-image {
    clip-path: polygon(50% 0%, 100% 0%, 100% 100%, 50% 100%);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: #ffffff;
}

.image-placeholder:not(.mermaid) {
    background: linear-gradient(135deg, #333 0%, #555 100%);
}

.image-placeholder.mermaid {
    background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 50%, #45b7d1 100%);
}

.comparison-slider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: #ffffff;
    transform: translateX(-50%);
    cursor: ew-resize;
}

.slider-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background: #ffffff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    color: #000000;
}

/* Download Section */
.download {
    padding: 120px 0;
    background: rgba(255, 255, 255, 0.02);
    text-align: center;
}

.download-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: #ffffff;
}

.download-content p {
    font-size: 1.2rem;
    color: #888;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.download-buttons {
    margin-bottom: 48px;
    display: flex;
    justify-content: center;
}

.download-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #888;
    font-weight: 500;
}

.feature-item i {
    color: #4ecdc4;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: #000000;
    color: #888;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.footer-impressum {
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-impressum h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    text-align: center;
}

.impressum-details {
    text-align: center;
}

.impressum-details p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 8px;
}

.impressum-details p:last-child {
    margin-bottom: 0;
}

.impressum-details strong {
    color: #ffffff;
    font-weight: 600;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-logo-image {
    height: 40px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    margin-bottom: 16px;
    border-radius: 10px;
}

.footer-brand p {
    line-height: 1.6;
    color: #888;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.link-group h4 {
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.link-group a {
    display: block;
    color: #888;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.link-group a:hover {
    color: #ffffff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal {
    flex: 1;
    max-width: 70%;
}

.footer-legal p {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.impressum-compact {
    margin-top: 10px;
}

.impressum-compact p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    line-height: 1.4;
    margin: 0;
}

.impressum-compact strong {
    color: rgba(255, 255, 255, 0.8);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

/* Team Section */
.team {
    padding: 100px 0;
    background: #0a0a0a;
    color: white;
}

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

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

.team-member:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.member-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: #333;
}

.team-member h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.member-role {
    font-size: 16px;
    font-weight: 600;
    color: #ffeaa7;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.member-description {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Differentiators Section */
.differentiators {
    padding: 100px 0;
    background: #0a0a0a;
}

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

.differentiator-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.differentiator-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.differentiator-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: white;
}

.differentiator-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.differentiator-card p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.coming-soon-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
}

/* Company Info in Footer */
.company-info {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.company-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
}

.company-info p {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .logo-image {
        height: 40px;
        max-width: 150px;
        border-radius: 10px;
    }

    .footer-logo-image {
        height: 35px;
        max-width: 150px;
        border-radius: 8px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .download-content h2 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        gap: 40px;
    }

    .feature-flow {
        flex-direction: column;
        gap: 20px;
    }

    .flow-arrow {
        transform: rotate(90deg);
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .transformation-showcase {
        grid-template-columns: 1fr;
    }

    .download-features {
        flex-direction: column;
        gap: 20px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-impressum {
        padding: 20px;
    }

    .footer-impressum h4 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .impressum-details p {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-legal {
        max-width: 100%;
        text-align: center;
    }

    .impressum-compact p {
        font-size: 0.75rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .team-member {
        padding: 30px 20px;
    }

    .member-avatar {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    .differentiators-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .differentiator-card {
        padding: 30px 20px;
    }

    .differentiator-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    .video-gallery {
        padding: 100px 0 40px;
    }

    .video-gallery-header {
        margin-bottom: 30px;
    }

    .video-carousel {
        gap: 15px;
        padding: 15px 0;
    }

    .video-item {
        width: 70vw;
        /* 70% of viewport width on mobile */
        height: 39.375vw;
        /* 16:9 aspect ratio (70vw * 9/16 = 39.375vw) */
    }

    .video-item:hover {
        transform: none;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .nav-container {
        padding: 0 16px;
    }

    .logo-image {
        height: 35px;
        max-width: 120px;
        border-radius: 8px;
    }

    .footer-logo-image {
        height: 30px;
        max-width: 120px;
        border-radius: 6px;
    }

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

    .section-header h2 {
        font-size: 1.8rem;
    }

    .download-content h2 {
        font-size: 1.8rem;
    }

    .video-gallery {
        padding: 100px 0 30px;
    }

    .video-gallery-header {
        margin-bottom: 25px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0 10px;
    }

    .video-item {
        height: 300px;
    }
}

/* Impressum Section */
.impressum {
    padding: 80px 0;
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.impressum-content {
    max-width: 800px;
    margin: 0 auto;
    color: #ffffff;
}

.impressum-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: #ffffff;
}

.impressum-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.impressum-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.impressum-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.impressum-section p {
    font-size: 1rem;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 10px;
}

.impressum-section p:last-child {
    margin-bottom: 0;
}

.impressum-section strong {
    color: #ffffff;
    font-weight: 600;
}

@media (max-width: 768px) {
    .impressum {
        padding: 60px 0;
    }

    .impressum-content h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .impressum-section {
        margin-bottom: 25px;
        padding-bottom: 15px;
    }

    .impressum-section h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .impressum-section p {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }
}