/* Landingpage Leon Schiefelbein – Erstellt mit Cursor, 2025 */

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

html {
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #F7F9FC;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Mobile Container Optimierung */
@media (max-width: 768px) {
    .container {
        max-width: 100%;
        width: 100%;
        padding: 0 1rem;
        box-sizing: border-box;
    }

    /* Verhindere horizontales Scrollen */
    * {
        max-width: 100%;
    }

    /* Ensure all sections use full width */
    section {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }
}

/* Header */
.header {
    background-color: #001A70;
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
    height: auto;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    transform: none;
    transition: none;
    will-change: auto;
}

/* Verhindert jegliche Header-Bewegung */
.header,
.header * {
    transform: translate3d(0, 0, 0) !important;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.logo-section {
    display: flex;
    align-items: center;
}

.logo {
    height: 65px;
    width: auto;
}

.company-name {
    color: white;
    line-height: 1.2;
}

.company-main {
    font-size: 16px;
    font-weight: 600;
}

.company-sub {
    font-size: 14px;
    font-weight: 500;
    margin-top: 2px;
}

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

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #93C5FD;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #93C5FD;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section - Conversion-optimiert */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #F7F9FC 0%, #ffffff 100%);
    color: #001A70;
    display: flex;
    align-items: center;
    padding: 120px 0 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    display: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-text {
    padding-right: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(59, 130, 246, 0.1);
    color: #3B82F6;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 30px;
    margin-bottom: 20px;
}

.hero-headline {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #001A70;
}

.hero-subheadline {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 40px;
    max-width: 550px;
}

.hero-ctas {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.cta-primary {
    display: inline-block;
    background: #1a66ff;
    color: white;
    padding: 18px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.2s ease;
    box-shadow: 0 6px 12px rgba(0, 26, 112, 0.2);
    text-align: center;
    position: relative;
}

.cta-primary:hover {
    background: #0044cc;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 26, 112, 0.4);
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: #1a66ff;
    padding: 15px 40px;
    border: 2px solid #1a66ff;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
    text-align: center;
}

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

.hero-social-proof {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #666;
    text-align: center;
}

.hero-social-proof .stars {
    color: #F59E0B;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.hero-social-proof .social-proof-text {
    color: #666;
    font-size: 0.9rem;
}

.hero-image {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 0;
}

.portrait {
    width: 100%;
    max-width: 400px;
    height: 500px;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

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

.portrait-social {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.portrait-social .social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.portrait-social .social-icon i {
    font-size: 1.1rem;
}

.portrait-social .social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.portrait-social .social-icon.linkedin {
    background: #0077b5;
    color: white;
}

.portrait-social .social-icon.whatsapp {
    background: #25D366;
    color: white;
}

.portrait-social .social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.portrait-rating {
    margin-top: 15px;
    text-align: center;
}

.rating-stars {
    font-size: 1.2rem;
    color: #FF8C00;
    margin-bottom: 8px;
    line-height: 1;
}

.rating-text {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    display: block;
}

/* Portrait & Social Proof Section */
.portrait-social-section {
    padding: 80px 0;
    background: white;
    display: none; /* Standard: Versteckt für Desktop */
}

.portrait-social-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.portrait-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-portrait {
    width: 100%;
    max-width: 350px;
    height: 450px;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.section-portrait:hover {
    transform: scale(1.02);
}

.social-rating-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.portrait-social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
}

.portrait-social-links .social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.portrait-social-links .social-icon i {
    font-size: 1.3rem;
}

.portrait-social-links .social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.portrait-social-links .social-icon.linkedin {
    background: #0077b5;
    color: white;
}

.portrait-social-links .social-icon.whatsapp {
    background: #25D366;
    color: white;
}

.portrait-social-links .social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.portrait-rating-display {
    text-align: center;
}

.portrait-rating-display .rating-stars {
    font-size: 1.4rem;
    color: #FF8C00;
    margin-bottom: 10px;
    line-height: 1;
}

.portrait-rating-display .rating-text {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
          display: block;
  }

/* Process Section (3-Schritte Timeline) - Desktop */
.process-section {
    padding: 80px 20px;
    background: white;
    position: relative;
    overflow: hidden;
}

.process-section .section-title {
    text-align: center;
    margin-bottom: 20px;
    color: #001A70;
    font-size: 2.5rem;
    font-weight: 700;
}

.process-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.process-timeline-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.timeline-container {
    position: relative;
    display: flex;
}

/* Timeline Line */
.timeline-line {
    position: absolute;
    left: 50px;
    top: 30px;
    bottom: 30px;
    width: 3px;
    background: #E5E7EB;
    border-radius: 2px;
    z-index: 1;
    height: calc(100% - 60px);
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, #001A70 0%, #3B82F6 100%);
    border-radius: 2px;
    transition: height 0.3s ease-out;
    z-index: 2;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding-left: 0;
    padding-top: 30px;
    padding-bottom: 30px;
    position: relative;
    z-index: 3;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding-left: 130px;
}

.process-step.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Step Marker (left side with circle) */
.step-marker {
    position: absolute;
    left: -130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 100px;
    top: 0;
}

.step-circle {
    width: 60px;
    height: 60px;
    position: relative;
    z-index: 10;
}

.step-inner-circle {
    width: 100%;
    height: 100%;
    background: white;
    border: 3px solid #E5E7EB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #9CA3AF;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.process-step.active .step-inner-circle {
    background: linear-gradient(135deg, #001A70 0%, #3B82F6 100%);
    border-color: #3B82F6;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
}

.process-step.completed .step-inner-circle {
    background: linear-gradient(135deg, #001A70 0%, #3B82F6 100%);
    border-color: #3B82F6;
    color: white;
}

.step-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.3);
    opacity: 0;
    animation: pulseRing 2s ease-out infinite;
}

.process-step.active .step-pulse {
    animation: pulseRing 2s ease-out infinite;
}

@keyframes pulseRing {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
    }
}

.step-number {
    font-size: 0.8rem;
    font-weight: 700;
    color: #9CA3AF;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
    font-family: 'Inter', sans-serif;
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 0.75rem;
}

.process-step.active .step-number,
.process-step.completed .step-number {
    color: #3B82F6;
}

/* Step Content */
.step-content {
    flex: 1;
    background: white;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #F3F4F6;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    padding-top: 28px;
    padding-right: 60px;
}

.step-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #001A70, #3B82F6);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.process-step.active .step-content,
.process-step.completed .step-content {
    border-color: rgba(59, 130, 246, 0.2);
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.15);
}

.process-step.active .step-content::before,
.process-step.completed .step-content::before {
    transform: scaleX(1);
}

.process-step:hover .step-content {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 26, 112, 0.2);
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #001A70;
    transition: color 0.3s ease;
}

.process-step.active .step-title,
.process-step.completed .step-title {
    color: #3B82F6;
}

.step-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.step-duration {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
}

.step-duration i {
    color: #3B82F6;
}

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

.benefits-section .section-title {
    text-align: center;
    margin-bottom: 60px;
    color: #001A70;
    font-size: 2.5rem;
    font-weight: 700;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.benefit-card {
    background: white;
    padding: 35px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
    border: 1px solid #f0f0f0;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3B82F6, #60A5FA);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
}

.benefit-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 18px;
    color: #001A70;
    line-height: 1.3;
}

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

.info-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.info-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.info-card:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.info-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 3px solid #3B82F6;
}

.info-icon {
    font-size: 1.5rem;
    color: #3B82F6;
    margin-right: 15px;
}

.info-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    color: #001A70;
}

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

/* Partner Sektion */
.partners-section {
    padding: 80px 0;
    background: #F7F9FC;
    overflow: hidden;
}

.partners-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #001A70;
}

.partners-carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.partners-carousel::before,
.partners-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50px;
    z-index: 2;
    pointer-events: none;
}

.partners-carousel::before {
    left: 0;
    background: linear-gradient(to right, #F7F9FC, transparent);
}

.partners-carousel::after {
    right: 0;
    background: linear-gradient(to left, #F7F9FC, transparent);
}

.partners-track {
    display: flex;
    animation: slidePartners 50s linear infinite;
    gap: 2rem;
    width: calc(320px * 10 + 2rem * 9);
}

.partner-card {
    background: white;
    border-radius: 12px;
    padding: 30px 20px;
    width: 320px;
    height: auto;
    min-height: 220px;
    flex-shrink: 0;
    position: relative;
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

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

.partner-category {
    display: inline-block;
    background: rgba(59, 130, 246, 0.1);
    color: #3B82F6;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    width: fit-content;
}

.partner-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #001A70;
    line-height: 1.3;
}

.partner-description {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #666;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

.partner-link {
    color: #3B82F6;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: auto;
    transition: color 0.3s ease;
}

.partner-link:hover {
    color: #2563EB;
    text-decoration: underline;
}

/* Karussell-Animation für Partner */
@keyframes slidePartners {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-320px * 8 - 2rem * 7));
    }
}

/* Mobile Animation für Partner */
@keyframes slidePartnersMobile {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-280px * 8 - 2rem * 7));
    }
}

/* Kundenbewertungen Sektion - NEU HINZUGEFÜGT */
.testimonials-section {
    padding: 80px 0;
    background: white;
    overflow: hidden;
}

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #001A70;
}

.testimonials-carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.testimonials-carousel::before,
.testimonials-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50px;
    z-index: 2;
    pointer-events: none;
}

.testimonials-carousel::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.testimonials-carousel::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

.testimonials-track {
    display: flex;
    animation: slide 80s linear infinite; /* Verlangsamt von 40s auf 80s */
    gap: 1.5rem;
    width: calc(300px * 12 + 1.5rem * 11); /* Ursprüngliche Desktop-Breite wiederhergestellt */
}

/* Mobile: CSS-Animation aktiviert - gleicher Effekt wie Desktop */
@media (max-width: 768px) {
    .testimonials-track {
        /* Animation bleibt aktiv für kontinuierliches Karussell */
    }
}


.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    width: 300px; /* Ursprüngliche Desktop-Größe wiederhergestellt */
    height: auto;
    min-height: 180px; /* Ursprüngliche Desktop-Größe wiederhergestellt */
    flex-shrink: 0;
    position: relative;
    border: 1px solid #f0f0f0;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.quote-mark {
    display: none;
}

.testimonial-text {
    font-size: 0.9rem; /* Ursprüngliche Desktop-Größe wiederhergestellt */
    line-height: 1.5; /* Ursprüngliche Desktop-Line-Height wiederhergestellt */
    color: #444;
    margin: 0 0 15px 0; /* Ursprüngliche Desktop-Margin wiederhergestellt */
    font-style: italic;
    flex-grow: 1;
}

.stars {
    color: #3B82F6;
    font-size: 1.1rem; /* Ursprüngliche Desktop-Größe wiederhergestellt */
    margin-bottom: 15px; /* Ursprüngliche Desktop-Margin wiederhergestellt */
}


.testimonial-details {
    margin-top: auto;
}

.category {
    display: block;
    font-size: 0.75rem;
    color: #666;
    font-weight: 600;
    margin-bottom: 3px;
}


/* Karussell-Animation */
@keyframes slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-300px * 6 - 1.5rem * 5)); /* Desktop: 300px Cards */
    }
}

/* Mobile Animation - angepasst für kleinere Cards */
@keyframes slide-mobile {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-216px * 6 - 1.5rem * 5)); /* Mobile: 216px (200px + 16px margin) Cards */
    }
}

@media (max-width: 768px) {
    .testimonials-track {
        animation: slide-mobile 80s linear infinite; /* Mobile-spezifische Animation */
        width: calc(216px * 12 + 1.5rem * 11); /* Angepasst für Mobile-Card-Größe */
    }
}

/* Beratung Section */
.beratung {
    padding: 80px 0;
    background-color: #F7F7F7;
}

/* About Me Section - Angepasst nach Bild */
.about-me {
    padding: 80px 0;
    background: white;
}

.about-me .section-title {
    text-align: center;
    margin-bottom: 60px;
    color: #001A70;
    font-size: 2.5rem;
    font-weight: 700;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.about-portrait-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-portrait {
    width: 280px;
    height: 380px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #3B82F6;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.social-icon:hover {
    background: #2563EB;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.social-icon i {
    font-size: 1.2rem;
}

.about-text {
    text-align: left;
    padding: 0 20px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 25px;
    text-align: left;
}

.trust-indicators {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    cursor: pointer;
}

.trust-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.trust-item i {
    color: #3B82F6;
    font-size: 1.8rem;
    width: 30px;
    text-align: center;
    flex-shrink: 0;
}

.trust-item span {
    font-weight: 600;
    color: #001A70;
    font-size: 1rem;
}

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

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

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

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3B82F6, #60A5FA);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #001A70;
}

.value-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #001A70;
}

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

.beratung-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.beratung-text p {
    margin-bottom: 25px;
}

/* Themen Section */
.themen {
    padding: 80px 0;
    background-color: white;
}

.themen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.thema-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e5e7eb;
}

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

.thema-image {
    position: relative;
    height: 160px;
    overflow: hidden;
}

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

.thema-card:hover .thema-image img {
    transform: scale(1.1);
}

.thema-label {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #001A70;
    color: white;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.thema-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 15px 15px 8px 15px;
    color: #001A70;
}

.thema-card p {
    font-size: 0.9rem;
    color: #666;
    margin: 0 15px 15px 15px;
    line-height: 1.5;
}

/* Conversion Zone */
.conversion-zone {
    padding: 100px 0;
    background: linear-gradient(135deg, #001A70 0%, #1E40AF 100%);
    color: white;
    text-align: center;
}

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

.conversion-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.conversion-text {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.conversion-cta {
    display: inline-block;
    background: #1a66ff;
    color: white;
    padding: 18px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.2s ease;
    box-shadow: 0 6px 12px rgba(0, 26, 112, 0.2);
    text-align: center;
}

.conversion-cta:hover {
    background: #0044cc;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 26, 112, 0.4);
}

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

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

.termin-placeholder {
    background: #F7F9FC;
    padding: 60px 40px;
    border-radius: 12px;
    border: 2px dashed #3B82F6;
    margin-top: 40px;
}

.termin-placeholder p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
}

.termin-placeholder em {
    color: #3B82F6;
    font-style: italic;
}

.termin-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

.termin-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #001A70;
}

.termin-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.termin-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 1rem;
    color: #666;
}

.termin-benefits i {
    color: #10B981;
    font-size: 1.2rem;
}

.contact-details {
    background: #F7F9FC;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #3B82F6;
}

.contact-details p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-details i {
    color: #3B82F6;
    width: 16px;
}

/* Form Styles */
.termin-form,
.kontakt-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
}

.termin-form h4,
.kontakt-form h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #001A70;
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3B82F6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.checkbox-group {
    margin-bottom: 30px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    flex-shrink: 0;
}

.checkbox-label a {
    color: #3B82F6;
    text-decoration: none;
}

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

.form-submit {
    width: 100%;
    background: #1a66ff;
    color: white;
    padding: 16px 24px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: #0044cc;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 26, 112, 0.3);
}

.form-success {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    text-align: center;
}

.form-success i {
    font-size: 3rem;
    color: #10B981;
    margin-bottom: 20px;
}

.form-success h4 {
    font-size: 1.5rem;
    color: #001A70;
    margin-bottom: 10px;
}

.form-success p {
    color: #666;
}

/* Kontakt Section */
.kontakt-section {
    padding: 80px 0;
    background-color: #001A70;
    color: white;
}

/* CTA Abschluss Section - NEU HINZUGEFÜGT */
.cta-final {
    padding: 100px 0;
    background: #001A70;
    color: white;
    text-align: center;
}

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

.cta-final-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.cta-final-text {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-final-button {
    display: inline-block;
    background: white;
    color: #001A70;
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-final-button:hover {
    background: #F5F5F5;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.kontakt-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.kontakt-left {
    text-align: left;
}

.kontakt-right {
    text-align: center;
    margin-left: -20px;
}

.kontakt-image {
    width: 100%;
    max-width: 400px;
    height: 500px;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

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

.kontakt .section-title {
    color: white;
    margin-bottom: 30px;
}

.kontakt-text {
    font-size: 1.2rem;
    margin-bottom: 50px;
    opacity: 0.9;
}

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

.kontakt-item {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
}

.kontakt-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.kontakt-details h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #93C5FD;
}

.kontakt-details p {
    font-size: 1rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #001A70;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    background: #F7F7F7;
}

/* Footer */
.footer {
    background-color: #F7F7F7;
    padding: 30px 0;
    border-top: 1px solid #e5e7eb;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-left p {
    color: #666;
    font-size: 0.9rem;
}

.footer-right {
    display: flex;
    gap: 30px;
}

.footer-link {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #001A70;
}

/* Responsive Design */
/* === BURGER ICON (Mobile Menu Button) — FIXED VERSION === */
.mobile-menu-toggle {
  display: none; /* wird über Media Queries ein-/ausgeblendet */
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 999;
  position: relative;
  transition: transform 0.3s ease;
}

/* Linien definieren */
.mobile-menu-toggle span {
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: white; /* Farbe beibehalten */
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Positionierung der drei Linien */
.mobile-menu-toggle span:nth-child(1) { top: 4px; }
.mobile-menu-toggle span:nth-child(2) { top: 10px; }
.mobile-menu-toggle span:nth-child(3) { top: 16px; }

/* Animation — erzeugt das X */
.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
}
.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 10px;
}

/* Klickfeedback */
.mobile-menu-toggle:active {
  transform: scale(0.95);
}

/* Tablet */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-text {
        padding-right: 0;
    }

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

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .trust-indicators {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Mobile */
@media (max-width: 768px) {
    /* Globale Typografie für Mobile */
    h1 { 
        font-size: 1.6rem; 
    }
    h2 { 
        font-size: 1.4rem; 
    }
    h3 { 
        font-size: 1.1rem; 
    }
    p, li { 
        font-size: 1rem; 
        line-height: 1.5;
        text-align: center;
    }

    /* Globale Sektion-Abstände */
    section {
        padding: 3rem 1.5rem;
        box-sizing: border-box;
    }

    section + section {
        margin-top: 3rem;
    }
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 18px 0;
    }
    
    .logo-section {
        flex: 1;
    }
    
    .navigation {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #001A70;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        z-index: 1000;
    }
    
    .navigation.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .navigation ul {
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        margin: 0 20px;
    }
    
    .navigation ul li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .navigation ul li:last-child {
        border-bottom: none;
    }
    
    .nav-link {
        display: block;
        padding: 15px 20px;
        font-size: 16px;
        border-bottom: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        margin-left: auto;
        margin-right: 20px;
    }
    
    .logo {
        height: 55px;
        margin-right: 0;
    }
    
    /* === HERO-BEREICH MOBILE: VOLLE HÖHE UND AUSGEGLICHENE VERTEILUNG === */
    .hero {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 5rem 1.5rem 2rem 1.5rem;
        box-sizing: border-box;
        width: 100%;
    }

    .hero .container {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        width: 100%;
        gap: 1.5rem;
        max-width: 100%;
    }

    .hero-text {
        padding: 0;
        width: 100%;
        max-width: 100%;
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .hero-image {
        display: none !important; /* Komplettes hero-image Element auf Mobile verstecken */
    }
    
    .hero-image .portrait,
    .hero-image .portrait-social,
    .hero-image .portrait-rating {
        display: none !important; /* Alle Elemente verstecken */
    }

    .hero-badge {
        background-color: rgba(0, 26, 112, 0.06);
        color: #001a70;
        font-weight: 600;
        font-size: 1rem;
        padding: 0.8rem 1.2rem;
        border-radius: 12px;
        width: 100%;
        text-align: center;
        max-width: 360px;
    }

    .hero-headline {
        font-size: 1.6rem;
        line-height: 1.3;
        font-weight: 700;
        color: #001a70;
        margin-bottom: 1rem;
        width: 100%;
        text-align: center;
    }

    .hero-subheadline {
        font-size: 1rem;
        line-height: 1.5;
        color: #333;
        margin-bottom: 1.5rem;
        width: 100%;
        text-align: center;
        max-width: 100%;
    }

    .hero-ctas {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        align-items: center;
        max-width: 360px;
    }

    .cta-primary, .cta-secondary {
        width: 100%;
        max-width: 320px;
        margin: 0.5rem auto;
        padding: 1rem;
        font-size: 1rem;
        border-radius: 8px;
        text-align: center;
        box-sizing: border-box;
    }

    .cta-primary {
        background-color: #1a66ff;
        color: white;
        font-weight: 600;
        text-decoration: none;
        box-shadow: 0 6px 12px rgba(0, 26, 112, 0.2);
        transition: all 0.3s ease;
    }

    .cta-primary:hover {
        background-color: #0044cc;
        transform: translateY(-2px);
    }

    .cta-secondary {
        border: 2px solid #1a66ff;
        color: #1a66ff;
        font-weight: 600;
        text-decoration: none;
        background: white;
        transition: all 0.3s ease;
    }

    .cta-secondary:hover {
        background-color: #1a66ff10;
    }

    @keyframes pulse-cta {
        0% { box-shadow: 0 0 0 rgba(59,130,246,0.0); }
        50% { box-shadow: 0 6px 20px rgba(59,130,246,0.08); }
        100% { box-shadow: 0 0 0 rgba(59,130,246,0.0); }
    }

    /* Portrait & Social Section - Mobile */
    .portrait-social-section {
        display: block !important; /* Auf Mobile anzeigen */
        padding: 0;
        background: linear-gradient(135deg, #001A70 0%, #1E40AF 100%);
    }

    .portrait-social-section .container {
        padding: 0;
        max-width: 100%;
        width: 100%;
    }

    .portrait-social-content {
        gap: 30px;
        padding: 0;
        max-width: 100%;
    }

    .portrait-container {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0;
    }

    .section-portrait {
        width: 100%;
        max-width: 100%;
        height: 500px;
        border-radius: 0;
        box-shadow: none;
        object-fit: cover;
        object-position: center;
    }

    .social-rating-container {
        gap: 20px;
        padding: 30px 20px;
        background: white;
        width: 100%;
        box-sizing: border-box;
    }

    .portrait-social-links {
        gap: 15px;
    }

    .portrait-social-links .social-icon {
        width: 45px;
        height: 45px;
    }

    .portrait-social-links .social-icon i {
        font-size: 1.1rem;
    }

    .portrait-rating-display .rating-stars {
        font-size: 1.2rem;
    }

    .portrait-rating-display .rating-text {
        font-size: 0.9rem;
    }

    .portrait-social {
        margin-top: 15px;
        gap: 12px;
        margin-bottom: 12px;
    }

    .portrait-social .social-icon {
        width: 35px;
        height: 35px;
    }

    .portrait-social .social-icon i {
        font-size: 1rem;
    }

    .portrait-rating {
        margin-top: 12px;
    }

    .rating-stars {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }

    .rating-text {
        font-size: 0.85rem;
    }

    /* Benefits Section Mobile */
    .benefits-section {
        padding: 3rem 1.5rem;
    }

    .benefits-section .section-title {
        font-size: 1.4rem;
        text-align: center;
        margin-bottom: 2rem;
    }

    .benefits-grid {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .benefit-card {
        width: 100%;
        max-width: 360px;
        text-align: center;
        padding: 1.5rem;
        box-sizing: border-box;
    }

    /* About Me Section Mobile */
    .about-me {
        padding: 3rem 1.5rem;
    }

    .about-me .section-title {
        font-size: 1.4rem;
        text-align: center;
        margin-bottom: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .portrait-wrapper {
        gap: 15px;
    }

    .about-portrait {
        width: 300px;
        height: 380px;
    }

    .social-icons {
        gap: 12px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }

    .social-icon i {
        font-size: 1.1rem;
    }

    .about-text {
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
        padding: 0;
    }

    .trust-indicators {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        min-width: auto;
        gap: 15px;
    }

    .trust-item {
        flex: 1;
        min-width: 180px;
        max-width: 250px;
    }

    /* Partner Sektion - Mobile */
    .partners-section {
        padding: 3rem 1.5rem;
    }

    .partners-title {
        font-size: 1.4rem;
        text-align: center;
        margin-bottom: 2rem;
    }

    .partners-track {
        animation: slidePartnersMobile 50s linear infinite;
        width: calc(280px * 10 + 2rem * 9);
    }

    .partner-card {
        width: 280px;
        min-height: 200px;
        padding: 25px 20px;
    }

    .partner-name {
        font-size: 1.1rem;
    }

    .partner-description {
        font-size: 0.85rem;
    }

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

    /* Conversion Zone Mobile */
    .conversion-zone {
        padding: 3rem 1.5rem;
    }

    .conversion-title {
        font-size: 1.4rem;
    }

    .conversion-cta {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .termin-placeholder {
        padding: 40px 20px;
    }
    
    
    .portrait {
        max-width: 350px;
        height: 450px;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
    }
    
    /* Kontakt Section - Mobile */
    .contact-cta {
        padding: 3rem 1.5rem;
    }

    .contact-title {
        font-size: 1.4rem;
        text-align: center;
        margin-bottom: 2rem;
    }

    .kontakt-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .kontakt-left {
        text-align: center;
    }
    
    .kontakt-image {
        max-width: 350px;
        height: 450px;
    }
    
    .kontakt-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-button {
        width: 100%;
        text-align: center;
    }
    
    /* Themen Section Mobile */
    .themen {
        padding: 3rem 1.5rem;
    }

    .themen .section-title {
        font-size: 1.4rem;
        text-align: center;
        margin-bottom: 2rem;
    }

    .themen-grid {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .thema-card {
        width: 100%;
        max-width: 320px;
        text-align: center;
        padding: 1.2rem;
        box-sizing: border-box;
    }
    
    .kontakt-info {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .termin-form,
    .kontakt-form {
        padding: 30px 20px;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
    }
    
    .kontakt-item {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-right {
        justify-content: center;
    }
    
    /* Kundenbewertungen - Mobile */
    .testimonials-section {
        padding: 3rem 1.5rem;
    }

    .testimonials-title {
        font-size: 1.4rem;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    /* Desktop Carousel Animation bleibt aktiv, Mobile wird separat behandelt */
    
    .testimonial-text {
        font-size: 0.85rem;
    }
    
    .category {
        font-size: 0.7rem;
    }
    
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .thema-card {
        margin: 0 10px;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

/* Animationen - ERWEITERT */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Scroll-Animationen */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease-out;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease-out;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Hover-Animationen */
.info-card:hover .info-icon {
    animation: pulse 0.6s ease-in-out;
}

.value-card:hover .value-icon {
    animation: pulse 0.6s ease-in-out;
}

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

.thema-card:nth-child(1) { animation-delay: 0.1s; }
.thema-card:nth-child(2) { animation-delay: 0.2s; }
.thema-card:nth-child(3) { animation-delay: 0.3s; }
.thema-card:nth-child(4) { animation-delay: 0.4s; }
.thema-card:nth-child(5) { animation-delay: 0.5s; }
.thema-card:nth-child(6) { animation-delay: 0.6s; }
.thema-card:nth-child(7) { animation-delay: 0.7s; }
.thema-card:nth-child(8) { animation-delay: 0.8s; }
.thema-card:nth-child(9) { animation-delay: 0.9s; }

/* Kontakt Buttons */
.kontakt-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

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

.cta-button.secondary:hover {
    background: white;
    color: #001A70;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Impressum Section */
.impressum-section {
    padding: 80px 0;
    background: #F7F7F7;
    display: none;
}

.impressum-section.show {
    display: block;
}

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

.impressum-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #001A70;
}

.impressum-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
}

.impressum-text p {
    margin-bottom: 20px;
}

/* Datenschutz Section */
.datenschutz-section {
    padding: 80px 0;
    background: #F7F7F7;
    display: none;
}

.datenschutz-section.show {
    display: block;
}

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

.datenschutz-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #001A70;
}

.datenschutz-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
}

.datenschutz-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #001A70;
    margin: 40px 0 20px 0;
    border-bottom: 2px solid #3B82F6;
    padding-bottom: 10px;
}

.datenschutz-text h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #001A70;
    margin: 30px 0 15px 0;
}

.datenschutz-text h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #001A70;
    margin: 25px 0 10px 0;
}

.datenschutz-text p {
    margin-bottom: 20px;
    text-align: justify;
}

.datenschutz-text ul {
    margin: 15px 0 20px 20px;
    padding-left: 20px;
}

.datenschutz-text li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.datenschutz-text strong {
    color: #001A70;
    font-weight: 600;
}

/* AGB Section */
.agb-section {
    padding: 80px 0;
    background: #F7F7F7;
    display: none;
}

.agb-section.show {
    display: block;
}

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

.agb-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #001A70;
}

.agb-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
}

.agb-text p {
    margin-bottom: 20px;
    text-align: justify;
}

     .agb-text strong {
       color: #001A70;
       font-weight: 600;
   }





/* Klickbare Themen-Karten */
.themen-grid .thema-card {
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.themen-grid .thema-card:hover {
    text-decoration: none;
    color: inherit;
}

/* Testimonials Mobile Cards - nur Card-Styles hier */
@media (max-width: 768px) {
    .testimonial-card {
        width: 200px; /* Kleinere Cards für Mobile */
        min-width: 200px;
        max-width: 220px;
        margin: 0 8px; /* 16px total pro Card */
        scroll-snap-align: center;
        flex-shrink: 0;
        min-height: 120px;
        padding: 12px;
    }
    
    .testimonial-text {
        font-size: 0.85rem;
        line-height: 1.4;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
    }
}

/* Benefits Mobile Cards */
@media (max-width: 768px) {
    .benefit-card {
        margin: 8px 0;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        padding: 20px 16px;
        min-height: 190px;
    }
    
    .benefit-card h3 {
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 12px;
        line-height: 1.3;
    }
    
    .benefit-card p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 16px;
        font-size: 1.6rem;
    }
}

/* Contact Form Mobile Optimierung */
@media (max-width: 768px) {
    .form-group input,
    .form-group textarea {
        height: 48px;
        font-size: 16px;
    }
    
    .form-group textarea {
        height: auto;
        min-height: 120px;
    }
}

/* Smooth Scrolling für ältere Browser */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* === KONTAKT & TERMIN BEREICH === */
.contact-cta {
    background: #f8f9fc;
    padding: 80px 20px;
    text-align: center;
    color: #001a70;
}

.contact-cta .container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #001a70;
}

.contact-intro {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-actions .cta-primary,
.contact-actions .cta-secondary {
    display: block;
    text-decoration: none;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.contact-actions .cta-primary {
    background-color: #1a66ff;
    color: white;
    box-shadow: 0 6px 12px rgba(0, 26, 112, 0.2);
}

.contact-actions .cta-primary:hover {
    background-color: #0044cc;
    transform: translateY(-2px);
}

.contact-actions .cta-secondary {
    border: 2px solid #1a66ff;
    color: #1a66ff;
    background: transparent;
}

.contact-actions .cta-secondary:hover {
    background-color: #1a66ff;
    color: white;
}

.contact-info {
    background: #eef2f6;
    padding: 1rem;
    border-radius: 10px;
    font-size: 1rem;
    margin-bottom: 2rem;
    text-align: left;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.contact-info a {
    color: #001a70;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-form {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    margin-top: 2rem;
    text-align: left;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

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

.contact-form .form-group {
    margin-bottom: 1rem;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    box-sizing: border-box;
    font-family: inherit;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: #1a66ff;
    box-shadow: 0 0 0 3px rgba(26, 102, 255, 0.1);
}

.contact-form .form-group.checkbox label {
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
}

.contact-form .form-group.checkbox input {
    width: auto;
    margin: 0;
    flex-shrink: 0;
}

.contact-form button.cta-primary {
    width: 100%;
    border: none;
    cursor: pointer;
    font-family: inherit;
    margin-top: 0.5rem;
}

/* Mobile Responsive für Kontakt & Termin Bereich */
@media (max-width: 768px) {
    .contact-cta {
        padding: 60px 20px;
    }
    
    .contact-title {
        font-size: 1.6rem;
    }
    
    .contact-intro {
        font-size: 1rem;
    }
    
    .contact-actions {
        gap: 0.8rem;
    }
    
    .contact-actions .cta-primary,
    .contact-actions .cta-secondary {
        padding: 0.9rem 1.2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 320px;
        margin: 0.5rem auto;
    }
    
    .contact-info {
        font-size: 0.9rem;
        padding: 0.8rem;
    }
    
    .contact-form {
        width: 100%;
        max-width: 360px;
        margin: 2rem auto 0;
        text-align: center;
        padding: 1.2rem;
    }

    .contact-form .form-group {
        margin-bottom: 1rem;
    }

    .contact-form .form-submit {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
        border-radius: 8px;
        min-height: 44px; /* Touch-Fläche */
    }

    .contact-form .form-group input,
    .contact-form .form-group textarea {
        padding: 0.8rem;
        font-size: 16px; /* Verhindert Zoom auf iOS */
        width: 100%;
        box-sizing: border-box;
    }
}

 /* Process Section Mobile */
 @media (max-width: 768px) {
     .process-section {
         padding: 40px 12px;
         overflow: visible;
     }

.process-section .section-title {
    font-size: 1.35rem;
    margin-bottom: 10px;
    line-height: 1.3;
    padding: 0 8px;
    word-wrap: break-word;
}

.process-intro {
    font-size: 0.9rem;
    margin-bottom: 35px;
    padding: 0 8px;
    line-height: 1.5;
}

.process-timeline-wrapper {
    padding: 0 5px;
}

.timeline-container {
    position: relative;
    padding: 0;
}

  .timeline-line {
      left: 22px;
      top: 15px;
      bottom: 15px;
      height: calc(100% - 30px);
      width: 3px;
  }

  .process-steps {
      padding-left: 0;
      padding-top: 15px;
      padding-bottom: 15px;
      gap: 35px;
  }

  .process-step {
      padding-left: 60px;
      gap: 15px;
      position: relative;
      flex-direction: row;
  }

  .step-marker {
      position: absolute;
      left: 0;
      transform: translateX(-50%);
      margin-left: 22px;
      min-width: 45px;
      top: 0;
      gap: 5px;
      align-items: center;
      justify-content: center;
      display: flex;
      flex-direction: column;
  }

  .step-circle {
      width: 45px;
      height: 45px;
      margin: 0 auto;
      position: relative;
      z-index: 10;
  }

.step-inner-circle {
    font-size: 1rem;
    border-width: 3px;
}

  .step-content .step-number {
      font-size: 0.65rem;
      letter-spacing: 1px;
      position: absolute;
      top: 14px;
      right: 16px;
  }

  .step-content {
      padding: 18px 50px 18px 16px;
      border-radius: 12px;
      width: 100%;
      margin-left: 0;
      box-sizing: border-box;
      flex: 1;
      position: relative;
  }

.step-title {
    font-size: 1.2rem;
    margin-bottom: 8px;
    line-height: 1.3;
}

.step-description {
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 10px;
}

.step-duration {
    font-size: 0.8rem;
}

.step-duration i {
    font-size: 0.75rem;
}

 .timeline-progress {
     transition: height 0.2s ease-out;
 }
 }

/* ========================================
   FAQ SECTION - Häufig gestellte Fragen
   ======================================== */

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: #FFFFFF;
    border-top: 1px solid #E5E5E5;
}

.faq-title {
    font-size: 2rem;
    font-weight: 700;
    color: #001A70;
    margin-bottom: 0.5rem;
    text-align: center;
}

.faq-subtitle {
    font-size: 1rem;
    color: #666666;
    margin-bottom: 3rem;
    text-align: center;
}

/* FAQ List */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

/* FAQ Item */
.faq-item {
    background: #FFFFFF;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #001A70;
    box-shadow: 0 2px 8px rgba(0, 26, 112, 0.1);
}

.faq-item.active {
    border-color: #001A70;
    box-shadow: 0 4px 12px rgba(0, 26, 112, 0.15);
}

/* FAQ Question Button */
.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

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

.faq-question span {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    flex: 1;
    line-height: 1.5;
}

.faq-question i {
    font-size: 0.875rem;
    color: #001A70;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question {
    background: #F0F4FF;
}

.faq-item.active .faq-question span {
    color: #001A70;
}

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

.faq-answer p {
    padding: 0 1.5rem 1.25rem 1.5rem;
    font-size: 0.95rem;
    color: #4B5563;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 0;
    }

    .faq-title {
        font-size: 1.5rem;
    }

    .faq-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .faq-list {
        gap: 0.875rem;
    }

    .faq-question {
        padding: 1rem 1.25rem;
    }

    .faq-question span {
        font-size: 0.95rem;
    }

    .faq-answer p {
        padding: 0 1.25rem 1rem 1.25rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 2rem 0;
    }

    .faq-title {
        font-size: 1.25rem;
    }

    .faq-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }

    .faq-question {
        padding: 0.875rem 1rem;
        min-height: 56px;
    }

    .faq-question span {
        font-size: 0.9rem;
    }

    .faq-question i {
        font-size: 0.8rem;
    }

    .faq-answer p {
        padding: 0 1rem 0.875rem 1rem;
        font-size: 0.85rem;
    }
}

/* ========================================
   PDF DOWNLOAD MODAL - ETF-Anleitung Download
   ======================================== */

/* PDF Download Modal Overlay */
.pdf-download-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    display: none;
    align-items: flex-start;
    justify-content: center;
    z-index: 9999;
    padding: 3rem 1.5rem;
    overflow-y: auto;
}

.pdf-download-modal.active {
    display: flex;
}

/* ============================================
   COOKIE BANNER & EINSTELLUNGEN
   ============================================ */

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #FFFFFF;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    padding: 1.5rem;
    border-top: 3px solid #001A70;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cookie-banner-text h3 {
    color: #001A70;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.cookie-banner-text p {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.cookie-banner-text a {
    color: #001A70;
    text-decoration: underline;
}

.cookie-banner-text a:hover {
    color: #3B82F6;
}

.cookie-banner-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.cookie-btn-accept {
    background: #001A70;
    color: #FFFFFF;
}

.cookie-btn-accept:hover {
    background: #3B82F6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 26, 112, 0.3);
}

.cookie-btn-reject {
    background: #F7F9FC;
    color: #333;
    border: 2px solid #E5E7EB;
}

.cookie-btn-reject:hover {
    background: #E5E7EB;
    border-color: #D1D5DB;
}

.cookie-btn-customize {
    background: transparent;
    color: #001A70;
    border: 2px solid #001A70;
}

.cookie-btn-customize:hover {
    background: #001A70;
    color: #FFFFFF;
}

.cookie-btn-save {
    background: #001A70;
    color: #FFFFFF;
    padding: 0.875rem 2rem;
}

.cookie-btn-save:hover {
    background: #3B82F6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 26, 112, 0.3);
}

/* Cookie Settings Modal */
.cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    padding: 1rem;
    overflow-y: auto;
}

.cookie-settings-modal.active {
    display: flex;
}

.cookie-settings-content {
    position: relative;
    background: #FFFFFF;
    border-radius: 24px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.cookie-settings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #E5E7EB;
}

.cookie-settings-header h2 {
    color: #001A70;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
}

.cookie-settings-close {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cookie-settings-close:hover {
    background: #F7F9FC;
    color: #001A70;
}

.cookie-settings-body {
    margin-bottom: 2rem;
}

.cookie-settings-intro {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #F7F9FC;
    border-radius: 8px;
    border-left: 4px solid #001A70;
}

.cookie-category {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #F7F9FC;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.cookie-category-header h3 {
    color: #001A70;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.cookie-category-status {
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
}

.cookie-category-status.always-active {
    background: #D1FAE5;
    color: #065F46;
}

.cookie-category-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.cookie-list {
    margin-top: 1rem;
}

.cookie-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.75rem;
    background: #FFFFFF;
    border-radius: 6px;
    margin-bottom: 0.5rem;
}

.cookie-item strong {
    color: #001A70;
    font-size: 0.9rem;
}

.cookie-item span {
    color: #666;
    font-size: 0.85rem;
}

/* Cookie Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 28px;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background-color: #001A70;
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(22px);
}

.cookie-toggle input:focus + .cookie-toggle-slider {
    box-shadow: 0 0 1px #001A70;
}

.cookie-settings-footer {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    padding-top: 1.5rem;
    border-top: 2px solid #E5E7EB;
    flex-wrap: wrap;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 1rem;
    }

    .cookie-banner-content {
        gap: 1rem;
    }

    .cookie-banner-text h3 {
        font-size: 1.1rem;
    }

    .cookie-banner-text p {
        font-size: 0.9rem;
    }

    .cookie-banner-buttons {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
        padding: 0.875rem 1.25rem;
    }

    .cookie-settings-content {
        padding: 1.5rem;
        max-height: 95vh;
    }

    .cookie-settings-header h2 {
        font-size: 1.5rem;
    }

    .cookie-category {
        padding: 1rem;
    }

    .cookie-category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .cookie-settings-footer {
        flex-direction: column;
    }

    .cookie-settings-footer .cookie-btn {
        width: 100%;
    }
}

/* PDF Download Modal Content */
.pdf-download-content {
    position: relative;
    background: #FFFFFF;
    border-radius: 24px;
    max-width: 800px;
    width: 100%;
    max-height: none;
    overflow: visible !important;
    padding: 2rem 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Close Button */
.pdf-download-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
    color: #6B7280;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.pdf-download-close:hover {
    background: #F3F4F6;
    color: #111827;
}

/* PDF Download Header */
.pdf-download-header {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.pdf-preview {
    flex-shrink: 0;
}

.pdf-preview-img {
    width: 200px;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.pdf-info {
    flex: 1;
}

.pdf-download-heading {
    font-size: 1.75rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.pdf-download-subheading {
    font-size: 1rem;
    color: #4B5563;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
}

.pdf-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pdf-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: #374151;
}

.pdf-feature i {
    color: #10B981;
    font-size: 1rem;
}

/* PDF Download Form */
.pdf-download-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 2.5rem 2.5rem;
    box-sizing: border-box;
}

.pdf-download-form .form-row {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.pdf-download-form .form-row .form-group {
    width: 100%;
}

.pdf-download-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    box-sizing: border-box;
}

.pdf-download-form .form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #374151;
}

.pdf-download-form .form-group input {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 0.95rem;
    background: #FFFFFF;
    border: 1.5px solid #D1D5DB;
    border-radius: 8px;
    color: #111827;
    transition: all 0.2s ease;
    outline: none;
}

.pdf-download-form .form-group input:focus {
    border-color: #001A70;
    box-shadow: 0 0 0 3px rgba(0, 26, 112, 0.1);
}

.pdf-download-form .form-group input::placeholder {
    color: #9CA3AF;
}

/* Checkbox */
.pdf-download-form .checkbox-group {
    margin-top: 0.5rem;
}

.pdf-download-form .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    cursor: pointer;
}

.pdf-download-form .checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.pdf-download-form .checkbox-custom {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border: 2px solid #D1D5DB;
    border-radius: 4px;
    background: #FFFFFF;
    transition: all 0.2s ease;
    position: relative;
    margin-top: 2px;
}

.pdf-download-form .checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: #001A70;
    border-color: #001A70;
}

.pdf-download-form .checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 4px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.pdf-download-form .checkbox-text {
    font-size: 0.8rem;
    color: #6B7280;
    line-height: 1.5;
}

.pdf-download-form .privacy-link {
    color: #001A70;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.pdf-download-form .privacy-link:hover {
    color: #00258a;
}

/* Download Button */
.pdf-download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #001A70 0%, #0033CC 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 1rem;
}

.pdf-download-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 26, 112, 0.4);
}

.pdf-download-btn:active {
    transform: translateY(0);
}

.pdf-download-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.pdf-download-btn i {
    font-size: 1.1rem;
}

/* Feedback */
.pdf-download-feedback {
    margin-top: 1rem;
    padding: 0.875rem 1rem;
    border-radius: 8px;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 500;
    display: none;
}

.pdf-download-feedback.show {
    display: block;
}

.pdf-download-feedback.success {
    background: #D1FAE5;
    color: #065F46;
}

.pdf-download-feedback.error {
    background: #FEE2E2;
    color: #991B1B;
}

@media (min-width: 640px) {
    .pdf-download-form .form-row {
        flex-direction: row;
    }

    .pdf-download-form .form-row .form-group {
        flex: 1 1 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .pdf-download-content {
        padding: 0;
        max-width: 100%;
        background: transparent;
        border-radius: 0;
        height: 100vh;
        overflow-y: auto;
        position: relative;
    }

    .pdf-download-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: transparent;
        padding: 2rem 1.5rem;
        min-height: 60vh;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
        text-align: center;
        z-index: 2;
    }

    .pdf-info {
        position: relative;
        z-index: 2;
        color: #FFFFFF;
    }

    .pdf-preview-img {
        display: none;
    }

    .pdf-download-heading {
        font-size: 1.75rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: #FFFFFF;
    }

    .pdf-download-subheading {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        color: rgba(255, 255, 255, 0.95);
    }

    .pdf-features {
        align-items: center;
        gap: 0.75rem;
    }

    .pdf-feature {
        color: rgba(255, 255, 255, 0.9);
        font-size: 0.9rem;
    }

    .pdf-feature i {
        color: #10B981;
        font-size: 1rem;
    }

    .pdf-download-form {
        background: #FFFFFF;
        padding: 2rem 1.5rem;
        margin: 0;
        border-radius: 24px;
        position: relative;
        z-index: 3;
        margin-top: 60vh;
        min-height: 50vh;
    }

    .pdf-download-close {
        position: fixed;
        top: 1rem;
        right: 1rem;
        background: rgba(0, 0, 0, 0.5);
        color: #FFFFFF;
        backdrop-filter: blur(10px);
        z-index: 4;
    }

    .pdf-download-close:hover {
        background: rgba(0, 0, 0, 0.7);
    }
}
