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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: #f8fafc !important;
    background-color: #f8fafc !important;
}

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

/* Utility Classes */
.hidden {
    display: none !important;
}

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

/* Neuer Zustand für Mobile-Menü offen */
.navbar.active {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    position: relative;
}

.nav-logo img {
    height: 4rem;
    width: auto;
}

.nav-logo i {
    margin-right: 0.5rem;
    font-size: 1.8rem;
    animation: bounce 2s infinite;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #2563eb, #fbbf24);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.nav-menu a:hover {
    color: #2563eb;
    transform: translateY(-2px);
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: slideInLeft 1s ease-out;
}

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

.highlight {
    color: #fbbf24;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    border-radius: 2px;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 5px #fbbf24; }
    to { box-shadow: 0 0 20px #fbbf24, 0 0 30px #fbbf24; }
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
    animation: slideInLeft 1s ease-out 0.3s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: slideInLeft 1s ease-out 0.6s both;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1f2937;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.4);
}

.btn-secondary {
    background: #f3f4f6;
    color: #2563eb;
    border: 2px solid #2563eb;
    backdrop-filter: blur(10px);
    transition: background 0.2s, color 0.2s, border 0.2s;
}

.btn-secondary:hover {
    background: #e0e7ff;
    color: #2563eb;
    border: 2px solid #2563eb;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.10);
}

.btn-success {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-success:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease-out 0.3s both;
}

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

.hero-graphic {
    position: relative;
    width: 500px;
    height: 400px;
}

.connection-line {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    border-radius: 2px;
    animation: pulse 2s infinite;
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

.user-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    min-width: 150px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.user-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(251, 191, 36, 0.5);
}

.user-card.coach {
    top: 30px;
    left: 30px;
    animation: floatCard 3s ease-in-out infinite;
}

.user-card.seeker {
    bottom: 30px;
    left: 50%;
    margin-left: -75px;
    animation: floatCard 3s ease-in-out infinite 1.5s;
}

.user-card.exchange {
    top: 30px;
    right: 30px;
    animation: floatCard 3s ease-in-out infinite 0.75s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.user-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fbbf24;
    filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.5));
}

.user-card span {
    font-weight: 600;
    font-size: 1.1rem;
}

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

/* Form Section */
.form-section {
    padding: 5rem 0;
    background: #f8fafc;
    position: relative;
}

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

.form-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-header p {
    font-size: 1.1rem;
    color: #6b7280;
}

/* Mentoring Forms Selector */
.mentoring-forms-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}
@media (max-width: 900px) {
    .mentoring-forms-selector {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
.mentoring-form-option {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 2.5rem 2rem 2rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(37,99,235,0.07);
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
.mentoring-form-option:hover {
    border-color: #e5e7eb;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.13);
    transform: translateY(-5px) scale(1.03);
}
.mentoring-form-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb, #fbbf24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 2px 12px rgba(37,99,235,0.10);
}
.mentoring-form-icon i {
    font-size: 2.5rem;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.13));
}
.mentoring-form-option h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}
.mentoring-form-option p {
    color: #374151;
    font-size: 1.08rem;
    margin-bottom: 0;
    line-height: 1.6;
}

.mentoring-form-option.selected {
    border-color: #2563eb;
    background: linear-gradient(135deg, #f8fafc, #eff6ff);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.15);
}

.mentoring-form-option.selected:hover {
    border-color: #2563eb;
    background: linear-gradient(135deg, #f8fafc, #eff6ff);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.2);
}

.mentoring-form-benefits {
    list-style: none;
    text-align: left;
}

.mentoring-form-benefits li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #374151;
    font-size: 0.9rem;
}

.mentoring-form-benefits i {
    color: #10b981;
    font-size: 0.8rem;
}

/* Selection Info */
.selection-info {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border: 1px solid #bfdbfe;
    border-radius: 10px;
    color: #1e40af;
    font-weight: 500;
    font-size: 0.95rem;
}

.selection-info i {
    color: #2563eb;
    font-size: 1rem;
}

/* Wizard Section */
.wizard-section {
    padding-top: 120px;
    background: #f8fafc;
    position: relative;
    visibility: visible;
    opacity: 1;
}

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

.wizard-section .wizard-step {
    padding-bottom: 2rem;
}

.wizard-section.hidden {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* Ensure wizard content is visible */
.wizard-section .step-content {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.wizard-section .form-grid {
    display: grid !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Progress Bar */
.wizard-progress {
    margin-bottom: 3rem;
    position: relative;
    padding: 0 20px;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #2563eb, #fbbf24);
    border-radius: 2px;
    transition: width 0.5s ease;
    width: 10%;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.5;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 60px;
}

.step.active {
    opacity: 1;
}

.step.completed {
    opacity: 1;
}

.step-number {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #e5e7eb;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.step.completed .step-number {
    background: linear-gradient(135deg, #fda314, #f59e0b);
    color: white;
}

.step span {
    font-size: 0.8rem;
    font-weight: 500;
    color: #6b7280;
    text-align: center;
}

.step.active span,
.step.completed span {
    color: #1f2937;
}

/* Wizard Steps */
.wizard-step {
    display: none;
    animation: slideInUp 0.5s ease-out;
    opacity: 0;
    transform: translateY(30px);
}

.wizard-step.active {
    display: block !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
}

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

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

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

.step-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-header p {
    font-size: 1.1rem;
    color: #6b7280;
}

/* Form Grid */
.form-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 1.5rem !important;
    margin-bottom: 2rem !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Password fields stacked vertically */
.form-grid.password-fields {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
}

.form-group {
    margin-bottom: 1.5rem !important;
    position: relative !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.form-group label {
    display: block !important;
    margin-bottom: 0.5rem !important;
    font-weight: 600 !important;
    color: #374151 !important;
    transition: color 0.3s ease !important;
    font-size: 1rem !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100% !important;
    padding: 1rem !important;
    border: 2px solid #e5e7eb !important;
    border-radius: 10px !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
    font-family: inherit !important;
    background: #fafafa !important;
    display: block !important;
    box-sizing: border-box !important;
    min-height: 48px !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: #374151 !important;
    cursor: text !important;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none !important;
    border-color: #2563eb !important;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1) !important;
    background: white !important;
    transform: translateY(-2px) !important;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #d1d5db !important;
    background: white !important;
}

/* Ensure form fields are visible in wizard */
.wizard-step .form-group input,
.wizard-step .form-group select,
.wizard-step .form-group textarea {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    height: auto !important;
    min-height: 48px !important;
    background: #fafafa !important;
    border: 2px solid #e5e7eb !important;
    color: #374151 !important;
}

/* Specific styles for different input types */
.wizard-step input[type="text"],
.wizard-step input[type="email"],
.wizard-step input[type="tel"] {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    height: 48px !important;
    padding: 12px 16px !important;
    background: #fafafa !important;
    border: 2px solid #e5e7eb !important;
    border-radius: 10px !important;
    font-size: 16px !important;
    color: #374151 !important;
    cursor: text !important;
}

.wizard-step select {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    height: 48px !important;
    padding: 12px 16px !important;
    background: #fafafa !important;
    border: 2px solid #e5e7eb !important;
    border-radius: 10px !important;
    font-size: 16px !important;
    color: #374151 !important;
    cursor: pointer !important;
}

.wizard-step textarea {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    min-height: 120px !important;
    padding: 12px 16px !important;
    background: #fafafa !important;
    border: 2px solid #e5e7eb !important;
    border-radius: 10px !important;
    font-size: 16px !important;
    color: #374151 !important;
    cursor: text !important;
    resize: vertical !important;
}

/* SAP Modules Grid - Modern Clean Look */
.sap-modules-section {
    margin-bottom: 3rem;
}

.sap-modules-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1f2937;
    text-align: center;
    letter-spacing: 0.5px;
}

.sap-modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    justify-items: center;
    align-items: stretch;
    margin-bottom: 1rem;
}

.module-option {
    cursor: pointer;
    width: 100%;
    max-width: 260px;
    border-radius: 18px;
    transition: box-shadow 0.3s, border-color 0.3s, background 0.3s;
    position: relative;
    background: transparent;
    box-shadow: none;
    border: none;
}

.module-option input[type="checkbox"] {
    position: absolute !important;
    left: 0;
    top: 0;
    width: 1px;
    height: 1px;
    opacity: 0 !important;
    pointer-events: none;
    margin: 0;
    padding: 0;
    border: none;
    box-shadow: none;
    appearance: none;
    -webkit-appearance: none;
}

.module-card {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 18px;
    padding: 2.2rem 1.2rem 1.2rem 1.2rem;
    text-align: center;
    transition: box-shadow 0.3s, border-color 0.3s, background 0.3s, transform 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    min-height: 180px;
    position: relative;
    box-shadow: 0 2px 12px rgba(37,99,235,0.04);
}

.module-card i {
    font-size: 2.3rem;
    color: #2563eb;
    background: #f3f6fd;
    border-radius: 50%;
    padding: 0.7rem;
    margin-bottom: 0.5rem;
    transition: background 0.3s, color 0.3s;
}

.module-card span {
    font-weight: 600;
    color: #1f2937;
    font-size: 1.08rem;
    letter-spacing: 0.2px;
}

/* Hover & Selected Effekt */
.module-option:hover .module-card,
.module-option:focus .module-card {
    border-color: #2563eb;
    box-shadow: 0 6px 24px rgba(37,99,235,0.10);
    background: #f5f8ff;
    transform: translateY(-4px) scale(1.03);
}

.module-option input[type="checkbox"]:checked + .module-card {
    border-color: #fda314;
    background: linear-gradient(135deg, #fff3e0 60%, #f5f8ff 100%);
    box-shadow: 0 8px 32px rgba(253, 163, 20, 0.10);
    position: relative;
}

.module-option input[type="checkbox"]:checked + .module-card i {
    color: #fda314;
    background: #fff3e0;
}

/* Checkmark bei Auswahl */
.module-option input[type="checkbox"]:checked + .module-card::after {
    display: flex !important;
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #fda314;
    background: #fff;
    border-radius: 50%;
    font-size: 1.2rem;
    position: absolute;
    top: 18px;
    right: 18px;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(253, 163, 20, 0.10);
    border: 2px solid #fda314;
    z-index: 2;
}

/* Tooltip für Modulnamen (optional) */
.module-card[title]:hover::before {
    content: attr(title);
    position: absolute;
    left: 50%;
    bottom: 110%;
    transform: translateX(-50%);
    background: #2563eb;
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(37,99,235,0.10);
    opacity: 1;
    pointer-events: none;
    z-index: 10;
}

@media (max-width: 900px) {
    .sap-modules-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1.2rem;
    }
    .module-option {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .sap-modules-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .module-card {
        min-height: 120px;
        padding: 1.2rem 0.7rem 0.7rem 0.7rem;
    }
}

/* Experience Slider */
.experience-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.experience-slider {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    border: 2px solid #e5e7eb;
}

.experience-slider input[type="range"] {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: #e5e7eb;
    outline: none;
    -webkit-appearance: none;
    margin-bottom: 1rem;
}

.experience-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.experience-slider input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.range-value {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #2563eb;
}

/* Zeitoptionen wie SAP-Module stylen */
.time-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.2rem;
    justify-items: center;
    align-items: stretch;
    margin-bottom: 1rem;
}

.time-option {
    cursor: pointer;
    width: 100%;
    max-width: 220px;
    border-radius: 16px;
    transition: box-shadow 0.3s, border-color 0.3s, background 0.3s, transform 0.2s;
    position: relative;
    background: #fff;
    border: 2px solid #e5e7eb;
    box-shadow: 0 2px 12px rgba(37,99,235,0.04);
    padding: 1.5rem 1rem;
    text-align: center;
    font-size: 1.08rem;
    font-weight: 600;
    color: #1f2937;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    margin: 0;
}

.time-option input[type="checkbox"] {
    position: absolute !important;
    left: 0;
    top: 0;
    width: 1px;
    height: 1px;
    opacity: 0 !important;
    pointer-events: none;
    margin: 0;
    padding: 0;
    border: none;
    box-shadow: none;
    appearance: none;
    -webkit-appearance: none;
}

.time-option span {
    z-index: 1;
    position: relative;
    pointer-events: none;
}

.time-option:hover,
.time-option:focus {
    border-color: #2563eb;
    box-shadow: 0 6px 24px rgba(37,99,235,0.10);
    background: #f5f8ff;
    transform: translateY(-2px) scale(1.03);
}

.time-option input[type="checkbox"]:checked + span {
    color: #fda314;
}

.time-option input[type="checkbox"]:checked ~ span {
    color: #fda314;
}

.time-option input[type="checkbox"]:checked ~ .checkmark {
    display: flex !important;
}

.time-option input[type="checkbox"]:checked + span::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #fda314;
    background: #fff;
    border-radius: 50%;
    font-size: 1.1rem;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(253, 163, 20, 0.10);
    border: 2px solid #fda314;
    z-index: 2;
}

@media (max-width: 600px) {
    .time-options {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .time-option {
        min-height: 48px;
        padding: 1rem 0.5rem;
    }
    .time-option input[type="checkbox"]:checked + span::after {
        display: none !important;
        content: none !important;
    }
}

/* Summary Section */
.summary-section {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    border: 2px solid #e5e7eb;
    margin-top: 2rem;
}

.summary-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1f2937;
    text-align: center;
}

.summary-content p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid #f3f4f6;
    color: #374151;
}

.summary-content p:last-child {
    border-bottom: none;
}

.summary-content strong {
    color: #1f2937;
    font-weight: 600;
}

/* Wizard Navigation */
.wizard-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 20px;
    border-top: 1px solid #e5e7eb;
    background: #f8fafc;
    margin-top: 3rem;
    width: 100%;
    max-width: 100%;
}

.wizard-prev {
    background: #6b7280;
    color: white;
    border: none;
}

.wizard-prev:hover {
    background: #4b5563;
}

.wizard-next,
.wizard-submit {
    margin-left: auto;
}

/* Mobile Wizard Navigation */
@media (max-width: 768px) {
    .wizard-navigation {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem 20px;
    }
    
    .wizard-prev,
    .wizard-next,
    .wizard-submit {
        width: 100%;
        justify-content: center;
        margin-left: 0;
    }
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: white;
    position: relative;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.features h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #fbbf24);
    border-radius: 2px;
}

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

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    background: white;
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 320px;
    height: 100%;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #fbbf24);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: transform 0.5s ease;
}

.feature-card:hover .feature-icon::after {
    transform: rotate(45deg) translate(50%, 50%);
}

.feature-icon i {
    font-size: 2rem;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
    flex-shrink: 0;
    min-height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.6;
    flex-grow: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin: 0;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    padding: 3rem 0 1rem;
    position: relative;
    margin-top: 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #fbbf24;
    position: relative;
}

.footer-section h3::after,
.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    border-radius: 1px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease;
}

.footer-section ul li:hover {
    transform: translateX(5px);
}

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-section a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #fbbf24;
    transition: width 0.3s ease;
}

.footer-section a:hover::after {
    width: 100%;
}

.footer-section a:hover {
    color: #fbbf24;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
    position: relative;
    z-index: 2;
}

/* Dashboard Section Styles */
.dashboard-section {
    padding: 3rem 0;
    background: #f8fafc;
    margin-top: 80px; /* Abstand für fixed Navigation */
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Mobile Dashboard Styles */
@media (max-width: 768px) {
    .dashboard-section {
        padding: 1rem 0;
        margin-top: 80px;
    }
    
    .dashboard-header {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .status-toggle-container {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .status-toggle-container h2 {
        font-size: 1.2rem;
        margin: 0;
        display: none; /* Hide Dashboard title on mobile */
    }
    
    .dashboard-actions {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .dashboard-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .credit-display {
        width: 100%;
        justify-content: space-between;
        padding: 0.75rem;
        border-radius: 8px;
        background: #f8fafc;
    }
}

/* Dashboard Tabs */
.dashboard-tabs {
    display: flex;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    overflow: hidden;
}

.tab-btn {
    flex: 1;
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    color: #6b7280;
    transition: all 0.2s;
    border-bottom: 3px solid transparent;
}

.tab-btn:hover {
    background: #f9fafb;
    color: #374151;
}

.tab-btn.active {
    color: #3b82f6;
    border-bottom-color: #3b82f6;
    background: #eff6ff;
}

.tab-btn i {
    margin-right: 0.5rem;
}

/* Mobile Dashboard Tabs */
@media (max-width: 768px) {
    .dashboard-tabs {
        margin-bottom: 1rem;
        border-radius: 8px;
    }
    
    .tab-btn {
        padding: 0.75rem 0.5rem;
        font-size: 0.8rem;
        flex-direction: column;
        gap: 0.25rem;
        text-align: center;
    }
    
    .tab-btn i {
        margin-right: 0;
        font-size: 1rem;
    }
    
    .tab-btn span {
        display: none;
    }
}

/* Tab Content */
.tab-content {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
}

.tab-pane {
    display: none;
    padding: 2rem;
}

.tab-pane.active {
    display: block;
}

/* Mobile Tab Content */
@media (max-width: 768px) {
    .tab-content {
        border-radius: 8px;
    }
    
    .tab-pane {
        padding: 1rem;
    }
}

/* Request Type Tabs */
.request-type-tabs {
    display: flex;
    background: #f3f4f6;
    border-radius: 8px;
    padding: 0.25rem;
    margin-bottom: 2rem;
    gap: 0.25rem;
}

.request-type-tab {
    flex: 1;
    padding: 0.75rem 1rem;
    background: none;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    color: #6b7280;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.request-type-tab:hover {
    background: #e5e7eb;
    color: #374151;
}

.request-type-tab.active {
    background: white;
    color: #3b82f6;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.request-type-tab i {
    font-size: 0.8rem;
}

/* Mobile Request Type Tabs */
@media (max-width: 768px) {
    .request-type-tabs {
        margin-bottom: 1rem;
        padding: 0.2rem;
        gap: 0.2rem;
    }
    
    .request-type-tab {
        padding: 0.5rem 0.25rem;
        font-size: 0.75rem;
        flex-direction: column;
        gap: 0.25rem;
        text-align: center;
    }
    
    .request-type-tab i {
        font-size: 1rem;
    }
    
    .request-type-tab span {
        display: none;
    }
    
    /* Hide request type headers on mobile */
    .request-type-header {
        display: none;
    }
}

/* Request Type Content */
.request-type-content {
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

.request-type-pane {
    display: none;
    padding: 1.5rem;
}

.request-type-pane.active {
    display: block;
}

.request-type-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.request-type-header h3 {
    margin: 0 0 0.5rem 0;
    color: #1f2937;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.request-type-header p {
    margin: 0;
    color: #6b7280;
    font-size: 0.9rem;
}

.candidates-list {
    min-height: 100px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.candidate-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s;
}

.candidate-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.1);
}

.candidate-info h4 {
    margin: 0 0 0.5rem 0;
    color: #1f2937;
    font-size: 1rem;
    font-weight: 600;
}

.candidate-info p {
    margin: 0 0 0.25rem 0;
    color: #6b7280;
    font-size: 0.85rem;
}

.candidate-score {
    background: #10b981;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.5rem;
    display: inline-block;
}

.candidate-actions .btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

/* Mobile Candidate Cards */
@media (max-width: 768px) {
    .candidate-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1rem;
    }
    
    .candidate-info h4 {
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
    }
    
    .candidate-info p {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .candidate-score {
        align-self: flex-start;
        margin-top: 0.25rem;
    }
    
    .candidate-actions {
        width: 100%;
        display: flex;
        gap: 0.5rem;
    }
    
    .candidate-actions .btn-sm {
        flex: 1;
        justify-content: center;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}

/* Request Cards */
.requests-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.request-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.2s;
}

.request-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.1);
}

/* Mobile Request Cards */
@media (max-width: 768px) {
    .requests-container {
        gap: 0.75rem;
    }
    
    .request-card {
        padding: 1rem;
    }
}

.request-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.request-info h4 {
    margin: 0 0 0.25rem 0;
    color: #1f2937;
    font-size: 1rem;
    font-weight: 600;
}

.request-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
}

.request-type-badge.klassisch {
    background: #dbeafe;
    color: #1e40af;
}

.request-type-badge.peer {
    background: #dcfce7;
    color: #166534;
}

.request-time {
    color: #6b7280;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.request-message {
    margin-bottom: 1rem;
}

.request-message p {
    margin: 0;
    color: #374151;
    line-height: 1.5;
}

.request-actions {
    display: flex;
    gap: 0.75rem;
}

.request-actions .btn {
    flex: 1;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
}

/* Match Cards für erfolgreiche Matches */
.match-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.2s;
}

.match-card:hover {
    border-color: #10b981;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.1);
}

.match-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.match-info h4 {
    margin: 0 0 0.25rem 0;
    color: #1f2937;
    font-size: 1rem;
    font-weight: 600;
}

.match-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
}

.match-type-badge.klassisch {
    background: #dbeafe;
    color: #1e40af;
}

.match-type-badge.peer {
    background: #dcfce7;
    color: #166534;
}

.match-date {
    color: #6b7280;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.match-contact p {
    margin: 0;
    color: #374151;
    font-size: 0.9rem;
}

/* Empty States */
.no-requests, .no-matches {
    text-align: center;
    padding: 3rem;
    color: #9ca3af;
}

.no-requests i, .no-matches i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #d1d5db;
}

.no-requests p, .no-matches p {
    margin: 0;
    font-style: italic;
}

/* Matches Section Styles (für Kompatibilität) */
.matches-section {
    padding: 3rem 0;
    background: #f8fafc;
    margin-top: 80px; /* Abstand für fixed Navigation */
}

.matches-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.status-toggle-container {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.status-toggle-container h2 {
    margin: 0;
    color: #1f2937;
    font-size: 1.5rem;
    font-weight: 600;
}

.availability-toggle {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

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

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

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

.toggle-switch input:checked + .toggle-slider {
    background-color: #10b981;
}

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

.toggle-label {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

.matches-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
}

.matches-loading {
    padding: 3rem;
    text-align: center;
    color: #6b7280;
}

.matches-loading i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #3b82f6;
}

.no-matches {
    padding: 3rem;
    text-align: center;
    color: #6b7280;
}

.no-matches i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #d1d5db;
}

.no-matches h3 {
    margin: 0 0 0.5rem 0;
    color: #374151;
    font-size: 1.25rem;
}

.matches-list {
    padding: 1rem;
}

.match-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.2s;
}

.match-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.1);
}

.match-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.match-info h3 {
    margin: 0 0 0.25rem 0;
    color: #1f2937;
    font-size: 1.1rem;
    font-weight: 600;
}

.match-info p {
    margin: 0;
    color: #6b7280;
    font-size: 0.9rem;
}

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

.match-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.match-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #6b7280;
}

.match-detail i {
    color: #3b82f6;
    width: 16px;
}

.match-actions {
    display: flex;
    gap: 0.75rem;
}

.match-actions .btn {
    flex: 1;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
}

.btn-accept {
    background: #10b981;
    color: white;
    border: none;
}

.btn-accept:hover {
    background: #059669;
}

.btn-decline {
    background: #ef4444;
    color: white;
    border: none;
}

.btn-decline:hover {
    background: #dc2626;
}

.btn-outline-secondary {
    background: transparent;
    color: #6b7280;
    border: 1px solid #d1d5db;
}

.btn-outline-secondary:hover {
    background: #f3f4f6;
    color: #374151;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        padding: 0.75rem 0;
        position: relative;
        transition: background-color 0.3s ease, min-height 0.3s ease;
        min-height: 80px;
    }

    .navbar.scrolled,
    .navbar.active {
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        min-height: 80px;
    }
    
    .nav-logo {
        display: flex;
        position: absolute;
        top: 50%;
        left: 1.5rem;
        transform: translateY(-50%);
        z-index: 1002;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-top: 0;
        transition: left 0.4s ease;
        font-size: 1.5rem;
    }

    .nav-menu.active {
        left: 0;
        display: flex;
    }
    
    /* Hide entire nav-actions section on mobile */
    .nav-actions {
        display: none !important;
    }
    
    /* Show nav-actions on desktop */
    @media (min-width: 769px) {
        .nav-actions {
            display: flex !important;
            align-items: center;
            gap: 1rem;
        }
    }
    
    /* Hide mobile login button */
    .nav-mobile-login {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
        position: fixed;
        top: 1.75rem;
        right: 1.5rem;
        z-index: 1001;
    }

    .nav-toggle.active span {
        background: #333;
    }
    
    .hero {
        align-items: flex-start;
        padding-top: 12vh;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding-top: 0;
    }
    
    .hero-image {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 90%;
        max-width: 400px;
        justify-content: center;
        padding: 1.2rem 1rem;
    }

    /* Mobile Styles für Rollenauswahl */
    .role-options, .main-role-options {
        flex-direction: column;
        gap: 1rem;
        margin: 1.5rem 0;
    }

    .role-option {
        flex: 1 1 auto;
        width: 100%;
    }

    .role-card {
        padding: 1.5rem 1rem;
        border-radius: 1.2rem;
        font-size: 1.1rem;
        min-height: 120px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }

    .role-card i {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .role-card span {
        font-weight: 600;
        font-size: 1.1rem;
    }

    .role-card small {
        font-size: 0.9rem;
        opacity: 0.8;
        text-align: center;
        line-height: 1.3;
    }

    /* Mobile Styles für Addons */
    .addons-options {
        flex-direction: column;
        gap: 1rem;
    }

    .addon-option {
        width: 100%;
    }

    .addon-card {
        padding: 1.5rem;
        border-radius: 1.2rem;
        min-height: 140px;
    }

    .addon-icon {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .addon-content h4 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .addon-content p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .addon-benefits {
        flex-direction: column;
        gap: 0.5rem;
    }

    .addon-benefits span {
        font-size: 0.9rem;
        padding: 0.3rem 0.8rem;
    }

    /* Touch-optimierte Styles für mobile Geräte */
    .role-option, .addon-option {
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }

    .role-card, .addon-card {
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        cursor: pointer;
    }

    /* Verbesserte Touch-Targets für mobile Geräte */
    .role-option label, .addon-option label {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .step-header h2 {
        font-size: 2rem;
    }
    
    .features h2 {
        font-size: 2rem;
    }
    
    .progress-steps {
        flex-direction: column;
        gap: 1rem;
    }
    
    .step {
        flex-direction: row;
        gap: 1rem;
    }

    /* Mobile Styles für Rollenauswahl bei sehr kleinen Bildschirmen */
    .role-options, .main-role-options {
        gap: 0.8rem;
        margin: 1rem 0;
    }

    .role-card {
        padding: 1.2rem 0.8rem;
        border-radius: 1rem;
        font-size: 1rem;
        min-height: 100px;
    }

    .role-card i {
        font-size: 1.8rem;
        margin-bottom: 0.4rem;
    }

    .role-card span {
        font-size: 1rem;
    }

    .role-card small {
        font-size: 0.8rem;
        line-height: 1.2;
    }

    /* Mobile Styles für Addons bei sehr kleinen Bildschirmen */
    .addon-card {
        padding: 1.2rem;
        border-radius: 1rem;
        min-height: 120px;
    }

    .addon-icon {
        font-size: 1.8rem;
        margin-bottom: 0.6rem;
    }

    .addon-content h4 {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
    }

    .addon-content p {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }

    .addon-benefits span {
        font-size: 0.8rem;
        padding: 0.2rem 0.6rem;
    }

    /* Touch-optimierte Styles für mobile Geräte */
    .role-option, .addon-option {
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }

    .role-card, .addon-card {
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        cursor: pointer;
    }

    /* Verbesserte Touch-Targets für mobile Geräte */
    .role-option label, .addon-option label {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Gender Options */
.gender-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.gender-option {
    cursor: pointer;
    position: relative;
}

.gender-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    border: none;
    appearance: none;
    -webkit-appearance: none;
    box-shadow: none;
    background: none;
}

.gender-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    min-height: 120px;
}

.gender-card i {
    font-size: 2rem;
    color: #2563eb;
    background: #f3f6fd;
    border-radius: 50%;
    padding: 0.8rem;
    transition: all 0.3s ease;
}

.gender-card span {
    font-weight: 600;
    color: #1f2937;
    font-size: 1.1rem;
}

.gender-option:hover .gender-card {
    border-color: #2563eb;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
}

.gender-option input[type="radio"]:checked + .gender-card {
    border-color: #fda314;
    background: linear-gradient(135deg, #fff3e0, #f5f8ff);
    box-shadow: 0 8px 25px rgba(253, 163, 20, 0.2);
}

.gender-option input[type="radio"]:checked + .gender-card i {
    color: #fda314;
    background: #fff3e0;
}

/* Language Options */
.language-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.language-option {
    cursor: pointer;
    position: relative;
}

.language-option input[type="radio"],
.language-option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.language-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    min-height: 120px;
}

.language-card i {
    font-size: 2rem;
    color: #2563eb;
    background: #f3f6fd;
    border-radius: 50%;
    padding: 0.8rem;
    transition: all 0.3s ease;
}

.language-card span {
    font-weight: 600;
    color: #1f2937;
    font-size: 1.1rem;
}

.language-option:hover .language-card {
    border-color: #2563eb;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
}

.language-option input[type="radio"]:checked + .language-card,
.language-option input[type="checkbox"]:checked + .language-card {
    border-color: #fda314;
    background: linear-gradient(135deg, #fff3e0, #f5f8ff);
    box-shadow: 0 8px 25px rgba(253, 163, 20, 0.2);
}

.language-option input[type="radio"]:checked + .language-card i,
.language-option input[type="checkbox"]:checked + .language-card i {
    color: #fda314;
    background: #fff3e0;
}

/* Mentoring Options */
.mentoring-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.mentoring-option {
    cursor: pointer;
    position: relative;
}

.mentoring-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.mentoring-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    min-height: 140px;
}

.mentoring-card i {
    font-size: 2rem;
    color: #2563eb;
    background: #f3f6fd;
    border-radius: 50%;
    padding: 0.8rem;
    transition: all 0.3s ease;
}

.mentoring-card span {
    font-weight: 600;
    color: #1f2937;
    font-size: 1.1rem;
}

.mentoring-option:hover .mentoring-card {
    border-color: #2563eb;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
}

.mentoring-option input[type="radio"]:checked + .mentoring-card {
    border-color: #fda314;
    background: linear-gradient(135deg, #fff3e0, #f5f8ff);
    box-shadow: 0 8px 25px rgba(253, 163, 20, 0.2);
}

.mentoring-option input[type="radio"]:checked + .mentoring-card i {
    color: #fda314;
    background: #fff3e0;
}

/* Info Box */
.info-box {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border: 1px solid #bfdbfe;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.info-box i {
    color: #2563eb;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-box p {
    color: #1e40af;
    font-weight: 500;
    margin: 0;
}

/* Topics Grid */
.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.topic-option {
    cursor: pointer;
    position: relative;
}

.topic-option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.topic-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    min-height: 140px;
    position: relative;
}

.topic-card i {
    font-size: 2rem;
    color: #6b7280;
    transition: all 0.3s ease;
}

.topic-card span {
    font-weight: 600;
    color: #1f2937;
    font-size: 1rem;
    line-height: 1.4;
}

.topic-option:hover .topic-card {
    border-color: #2563eb;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
}

.topic-option input[type="checkbox"]:checked + .topic-card {
    border-color: #3b82f6;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}

.topic-option input[type="checkbox"]:checked + .topic-card i {
    color: white;
}

.topic-option input[type="checkbox"]:checked + .topic-card span {
    color: white;
}

.topic-option input[type="checkbox"]:checked + .topic-card::after {
    content: '✓';
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: #10b981;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    animation: fadeIn 0.3s ease;
}

@media (max-width: 768px) {
    .topic-options {
        grid-template-columns: 1fr;
    }
    
    .topic-card {
        min-height: 100px;
        padding: 1rem;
    }
    
    .topic-card span {
        font-size: 0.85rem;
    }
}

/* Work Area Styles */
.work-area-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.work-area-option {
    position: relative;
}

.work-area-option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.work-area-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-height: 120px;
    justify-content: center;
    position: relative;
}

.work-area-card i {
    font-size: 2rem;
    color: #6b7280;
    transition: all 0.3s ease;
}

.work-area-card span {
    font-weight: 500;
    color: #374151;
    font-size: 0.9rem;
    line-height: 1.4;
}

.work-area-option:hover .work-area-card {
    border-color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.work-area-option input[type="checkbox"]:checked + .work-area-card {
    border-color: #3b82f6;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}

.work-area-option input[type="checkbox"]:checked + .work-area-card i {
    color: white;
}

.work-area-option input[type="checkbox"]:checked + .work-area-card span {
    color: white;
}

.work-area-option input[type="checkbox"]:checked + .work-area-card::after {
    content: '✓';
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: #10b981;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    animation: fadeIn 0.3s ease;
}

.work-area-freetext {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
}

.work-area-freetext .form-group {

/* Mobile Work Area Options */
@media (max-width: 768px) {
    .work-area-options {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin-top: 0.5rem;
    }
    
    .work-area-card {
        padding: 1rem;
        min-height: 100px;
    }
    
    .work-area-card i {
        font-size: 1.5rem;
    }
    
    .work-area-card span {
        font-size: 0.85rem;
    }
}
    margin-bottom: 0;
}

.work-area-freetext input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.work-area-freetext input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

@media (max-width: 768px) {
    .work-area-options {
        grid-template-columns: 1fr;
    }
    
    .work-area-card {
        min-height: 100px;
        padding: 1rem;
    }
    
    .work-area-card span {
        font-size: 0.85rem;
    }
}

/* Industry Expertise Styles */
.industry-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.industry-option {
    display: block;
    cursor: pointer;
}

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

.industry-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.industry-card i {
    font-size: 2rem;
    color: #6b7280;
    margin-bottom: 0.75rem;
    display: block;
    transition: all 0.3s ease;
}

.industry-card span {
    font-weight: 500;
    color: #374151;
    font-size: 0.95rem;
    line-height: 1.4;
    display: block;
    transition: all 0.3s ease;
}

.industry-option:hover .industry-card {
    border-color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.industry-option input[type="checkbox"]:checked + .industry-card {
    border-color: #3b82f6;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.25);
}

.industry-option input[type="checkbox"]:checked + .industry-card i {
    color: white;
}

.industry-option input[type="checkbox"]:checked + .industry-card span {
    color: white;
}

.industry-option input[type="checkbox"]:checked + .industry-card::after {
    content: '✓';
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: #10b981;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    animation: fadeIn 0.3s ease;
}

@media (max-width: 768px) {
    .industry-options {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .industry-card {
        padding: 1.25rem;
    }
    
    .industry-card span {
        font-size: 0.9rem;
    }
}

/* Age Options Styles */
.age-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.age-option {
    flex: 1 1 120px;
    cursor: pointer;
}

.age-option input[type="radio"] {
    position: absolute !important;
    opacity: 0 !important;
    pointer-events: none !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    box-shadow: none !important;
    background: none !important;
}

.age-card {
    background: #f3f4f6;
    border-radius: 1rem;
    padding: 1.2rem 1rem;
    text-align: center;
    transition: box-shadow 0.3s, background 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    color: #333;
    font-size: 1.1rem;
}

.age-option input[type="radio"]:checked + .age-card {
    background: linear-gradient(90deg, #667eea 0%, #fbbf24 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(102,126,234,0.15);
}

.age-card i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

/* Professional Context */
.professional-context {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2rem 0;
}

.context-section {
    flex: 1 1 250px;
    min-width: 220px;
}

.role-options, .experience-options {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1rem 0;
}

.role-option, .experience-option {
    flex: 1 1 120px;
    cursor: pointer;
}

.role-option input[type="radio"] {
    position: absolute !important;
    opacity: 0 !important;
    pointer-events: none !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    box-shadow: none !important;
    background: none !important;
}

.role-card, .experience-card {
    background: #f3f4f6;
    border-radius: 1rem;
    padding: 1rem 0.5rem;
    text-align: center;
    transition: box-shadow 0.3s, background 0.3s;
    color: #333;
    font-size: 1rem;
}

.role-option input[type="radio"]:checked + .role-card,
.experience-option input[type="radio"]:checked + .experience-card {
    background: linear-gradient(90deg, #667eea 0%, #fbbf24 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(102,126,234,0.15);
}

.role-card i, .experience-card i {
    font-size: 1.7rem;
    margin-bottom: 0.3rem;
    display: block;
}

/* Industry Knowledge */
#wizard-industry {
    width: 100%;
    padding: 0.7rem 1rem;
    border-radius: 0.7rem;
    border: 1px solid #d1d5db;
    margin-top: 0.5rem;
    font-size: 1rem;
}

/* Mentoring Goals */
.mentoring-goals {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin: 2rem 0 3rem 0;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
}

.goals-section {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(37,99,235,0.04);
    padding: 2rem 1.5rem 2.5rem 1.5rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: none;
}

.mentoring-goals .goals-section:first-child,
.mentoring-goals .goals-section {
    border: none;
}

.goals-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #2563eb;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    width: 100%;
}

.goal-option {
    width: 100%;
    min-width: 0;
    cursor: pointer;
    display: flex;
}

.goal-card {
    background: #f3f4f6;
    border-radius: 1rem;
    padding: 1rem 1.2rem;
    text-align: center;
    transition: box-shadow 0.3s, background 0.3s;
    color: #333;
    font-size: 1rem;
    min-width: 180px;
    max-width: 100%;
    height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.goal-option input[type="checkbox"]:checked + .goal-card {
    background: linear-gradient(90deg, #667eea 0%, #fbbf24 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(102,126,234,0.15);
}

.goal-card i {
    font-size: 1.3rem;
    margin-bottom: 0.2rem;
    display: block;
}

/* Visual separation between areas */
.mentoring-goals .goals-section:first-child {
    border-right: 2px solid #e5e7eb;
}

@media (max-width: 900px) {
    .mentoring-goals {
        flex-direction: column;
        gap: 2rem;
    }
    .goals-section {
        max-width: 100%;
        min-width: 0;
        width: 100%;
        border-radius: 16px;
        box-shadow: 0 2px 8px rgba(37,99,235,0.04);
        padding: 1.5rem 0.5rem 2rem 0.5rem;
    }
    .mentoring-goals .goals-section:first-child {
        border-right: none;
        border-bottom: 2px solid #e5e7eb;
    }
    .goals-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.goals-info {
    background: #e0e7ff;
    color: #3730a3;
    border-radius: 0.7rem;
    padding: 0.7rem 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 1rem;
}

/* Personal Pitch */
#wizard-pitch {
    width: 100%;
    padding: 1rem;
    border-radius: 1rem;
    border: 1px solid #d1d5db;
    font-size: 1rem;
    margin-top: 0.5rem;
    resize: vertical;
    min-height: 120px;
}

/* Remove checkmarks from selected tiles */
.goal-option input[type="checkbox"]:checked + .goal-card::after,
.topic-option input[type="checkbox"]:checked + .topic-card::after,
.search-option input[type="checkbox"]:checked + .search-card::after,
.experience-option input[type="radio"]:checked + .experience-card::after,
.module-option input[type="checkbox"]:checked + .module-card::after,
.time-option input[type="checkbox"]:checked + span::after {
    display: none !important;
    content: none !important;
}

.goal-option input[type="checkbox"],
.goals-section input[type="checkbox"],
.goals-grid input[type="checkbox"] {
    position: absolute !important;
    opacity: 0 !important;
    pointer-events: none !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    box-shadow: none !important;
    background: none !important;
}

@media (max-width: 600px) {
    .progress-steps {
        flex-direction: column;
        gap: 0.3rem;
        align-items: flex-start;
    }
    .step {
        flex-direction: row;
        gap: 0.3rem;
        margin-bottom: 0.2rem;
        min-width: 0;
        align-items: center;
    }
    .step-number {
        width: 28px;
        height: 28px;
        font-size: 0.85rem;
        margin-right: 0.2rem;
    }
    .step span {
        font-size: 0.75rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 120px;
    }
}

@media (max-width: 600px) {
    .form-header h2 {
        font-size: 1.3rem;
        margin-bottom: 0.7rem;
        line-height: 1.2;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .form-header p,
    .selection-info {
        display: none !important;
    }
}

/* Global rules for floating start button */
.start-wizard-section {
    display: none !important;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 2rem;
    width: auto;
    max-width: 98vw;
    background: transparent;
    box-shadow: none;
    z-index: 2000;
    padding: 0;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

.start-wizard-section.active {
    display: flex !important;
    pointer-events: auto;
}

.start-wizard-section .btn {
    width: auto;
    min-width: 220px;
    max-width: 98vw;
    height: 54px;
    font-size: 1rem;
    padding: 0 2.2rem;
    border-radius: 40px;
    box-shadow: 0 8px 32px rgba(37,99,235,0.18);
    background: linear-gradient(90deg, #2563eb 80%, #fbbf24 100%);
    color: #fff;
    opacity: 0.97;
    pointer-events: auto;
    border: none;
    transition: box-shadow 0.2s, opacity 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.start-wizard-section .btn:active {
    box-shadow: 0 2px 8px rgba(37,99,235,0.10);
    opacity: 0.85;
}

@media (max-width: 600px) {
    .progress-steps {
        display: none !important;
    }
    .mobile-progress-indicator {
        width: 100vw !important;
        display: block !important;
        text-align: center !important;
        color: #2563eb !important;
        font-size: 1rem !important;
        font-weight: 500 !important;
        border: none !important;
        box-shadow: none !important;
        margin: 0 auto 1.2rem auto !important;
        padding: 0.3rem 0 0.3rem 0 !important;
        letter-spacing: 0.02em;
    }
}

/* Mentoring Role Cards */
.mentoring-role-cards {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    justify-content: center;
}

.mentoring-role-card {
    background: #f5f6fa;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px 32px;
    text-align: center;
    cursor: pointer;
    transition: background 0.2s, border 0.2s, box-shadow 0.2s;
    font-size: 18px;
    color: #374151;
    min-width: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.mentoring-role-card i {
    font-size: 32px;
    margin-bottom: 10px;
    color: #6c63ff;
}

.mentoring-role-card.selected {
    background: #e0e7ff;
    border-color: #6c63ff;
    color: #22223b;
    box-shadow: 0 4px 16px rgba(108,99,255,0.08);
}

.mentoring-role-card:hover {
    background: #eef2ff;
    border-color: #b4b4ff;
}

.mentoring-female-card {
    background: #fff0f6;
    border: 2px solid #fbb6ce;
    border-radius: 12px;
    padding: 20px 32px;
    text-align: center;
    cursor: pointer;
    transition: background 0.2s, border 0.2s, box-shadow 0.2s;
    font-size: 18px;
    color: #c026d3;
    margin: 0 auto 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    max-width: 500px;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(255,0,128,0.03);
}

.mentoring-female-card.selected {
    background: #fbb6ce;
    border-color: #c026d3;
    color: #fff;
    box-shadow: 0 4px 16px rgba(192,38,211,0.08);
}

.mentoring-female-card i {
    font-size: 28px;
}

.mentoring-female-card:hover {
    background: #ffe4f3;
    border-color: #c026d3;
}

/* Mentoring Role & Professional Context: Hide checkboxes and highlight cards */
.role-option input[type="checkbox"] {
    position: absolute !important;
    opacity: 0 !important;
    pointer-events: none !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    box-shadow: none !important;
    background: none !important;
}

.role-option input[type="checkbox"] + .role-card {
    transition: background 0.3s, border 0.3s, color 0.3s, box-shadow 0.3s;
}

.role-option input[type="checkbox"]:checked + .role-card {
    background: linear-gradient(90deg, #667eea 0%, #fbbf24 100%);
    color: #fff;
    border-color: #667eea;
    box-shadow: 0 4px 16px rgba(102,126,234,0.15);
}

.role-option input[type="checkbox"]:checked + .role-card i {
    color: #fff;
    background: #fbbf24;
}

.role-option input[type="checkbox"]:focus + .role-card,
.role-option input[type="checkbox"]:active + .role-card {
    outline: none !important;
    box-shadow: 0 4px 16px rgba(102,126,234,0.15) !important;
    border-color: #667eea !important;
}

.role-option input[type="checkbox"]:focus {
    outline: none !important;
    box-shadow: none !important;
}

.role-card i {
    background: transparent;
    transition: background 0.3s, color 0.3s;
}

.role-option input[type="checkbox"]:checked + .role-card i {
    background: transparent !important;
    color: #fff !important;
}

@media (max-width: 900px) {
    .nav-actions .nav-desktop-login {
        display: none !important;
    }
    .nav-menu .nav-mobile-login {
        display: block !important;
        margin-top: 1.5rem;
        text-align: center;
    }
}

@media (min-width: 901px) {
    .nav-menu .nav-mobile-login {
        display: none !important;
    }
}

/* Navigation Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Language Selector */
.language-selector {
    display: flex;
    gap: 0.5rem;
    margin-right: 1rem;
}

.mobile-language-selector {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    justify-content: center;
}

.language-btn {
    background: transparent;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.language-btn:hover {
    border-color: #3b82f6;
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.05);
}

.language-btn.active {
    background: #3b82f6;
    border-color: #3b82f6;
    color: white;
}

.language-btn i {
    font-size: 0.75rem;
}

@media (max-width: 900px) {
    .language-selector {
        display: none;
    }
    
    .mobile-language-selector {
        display: flex;
    }
}

@media (min-width: 901px) {
    .mobile-language-selector {
        display: none;
    }
    
    .language-selector {
        display: flex;
    }
}

/* Mentoring Ablauf Grid Styles */
.mentoring-ablauf-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.mentoring-ablauf-step {
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(37,99,235,0.04);
    padding: 2rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 280px;
    height: 100%;
}

.mentoring-ablauf-step > div:first-child {
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.mentoring-ablauf-step h3 {
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
    flex-shrink: 0;
    min-height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mentoring-ablauf-step p {
    flex-grow: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin: 0;
}

.step-icon {
    font-size: 2rem;
    color: #2563eb;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .mentoring-ablauf-step {
        min-height: auto;
        height: auto;
    }
    
    .mentoring-ablauf-step p {
        align-items: center;
    }
}

/* Credit System Grid */
.credit-system-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.credit-system-step {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid #f0f9ff;
    transition: transform 0.3s ease;
}

.credit-system-step:hover {
    transform: translateY(-5px);
    border-color: #0ea5e9;
}

.credit-system-step h3 {
    color: #0ea5e9;
    margin-bottom: 1rem;
}

.credit-system-step p {
    color: #6b7280;
    line-height: 1.6;
}

.credit-system-note {
    margin-top: 3rem;
    background: #f0f9ff;
    border: 1px solid #0ea5e9;
    border-radius: 12px;
    padding: 1.5rem;
}

.note-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.note-content i {
    color: #0ea5e9;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.note-content h4 {
    color: #0ea5e9;
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.note-content p {
    color: #374151;
    margin: 0;
    line-height: 1.5;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.faq-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    position: relative;
}

.faq-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 2px;
}

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

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

.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
    flex: 1;
}

.faq-question i {
    color: #64748b;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #f8fafc;
}

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

.faq-answer p {
    color: #374151;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-answer li {
    color: #374151;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.faq-answer li:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .faq-header h2 {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1.25rem 1.5rem;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
    }
}

/* FAQ CTA Section */
.faq-cta {
    margin-top: 4rem;
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 16px;
    color: white;
    position: relative;
    overflow: hidden;
}

.faq-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.faq-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.faq-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.faq-cta .btn {
    background: white;
    color: #3b82f6;
    border: 2px solid white;
    font-weight: 600;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: block;
    margin: 0 auto;
}

.faq-cta .btn:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.faq-cta .btn i {
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .faq-cta {
        margin-top: 3rem;
        padding: 2rem 1.5rem;
    }
    
    .faq-cta h3 {
        font-size: 1.5rem;
    }
    
    .faq-cta p {
        font-size: 1rem;
    }
    
    .faq-cta .btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

/* Female Mentoring Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    animation: slideUp 0.4s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-header h2 i {
    color: #fbbf24;
}

.modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.modal-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.modal-body {
    padding: 32px;
    overflow-y: auto;
    flex: 1;
    max-height: calc(90vh - 120px);
}

.female-mentoring-info {
    text-align: center;
    margin-bottom: 32px;
}

.info-icon {
    margin-bottom: 20px;
}

.info-icon i {
    font-size: 48px;
    color: #667eea;
    animation: pulse 2s infinite;
}

.female-mentoring-info h3 {
    color: #1f2937;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.female-mentoring-info p {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.female-mentoring-info ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    text-align: left;
}

.female-mentoring-info li {
    padding: 8px 0;
    color: #374151;
    font-size: 15px;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.female-mentoring-info li i {
    color: #10b981;
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
}

.confirmation-message {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 8px;
    padding: 16px;
    margin-top: 20px;
}

.confirmation-message p {
    margin: 0;
    color: #92400e;
    font-size: 14px;
    line-height: 1.5;
}

.modal-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.modal-actions .btn {
    flex: 1;
    max-width: 150px;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.modal-actions .btn-primary {
    background: #667eea;
    color: white;
}

.modal-actions .btn-primary:hover {
    background: #5a67d8;
    transform: translateY(-1px);
}

.modal-actions .btn-secondary {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
}

.modal-actions .btn-secondary:hover {
    background: #e5e7eb;
    transform: translateY(-1px);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

/* Success Message Styles */
.success-message {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #10b981;
    color: white;
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    z-index: 10001;
    animation: slideInRight 0.3s ease;
    max-width: 300px;
}

.success-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.success-content i {
    font-size: 20px;
    color: white;
}

.success-content p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

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

@media (max-width: 768px) {
    .modal-content {
        margin: 5% auto;
        width: 95%;
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 20px 24px;
    }
    
    .modal-header h2 {
        font-size: 18px;
    }
    
    .modal-body {
        padding: 24px;
        max-height: calc(95vh - 100px);
    }
    
    .female-mentoring-info h3 {
        font-size: 20px;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .modal-actions .btn {
        max-width: none;
    }

    /* Hide Female Mentoring success message on mobile */
    .success-message.female-mentoring-message {
        display: none !important;
    }
    
    /* Mobile styles for inline payment modal */
    #payment-required-modal > div {
        margin: 20px;
        padding: 1.5rem 1rem;
        max-width: calc(100% - 40px);
        border-radius: 12px;
    }
    
    #payment-required-modal h2 {
        font-size: 1.3rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    #payment-required-modal p {
        font-size: 0.9rem !important;
        margin-bottom: 1rem !important;
    }
    
    #payment-required-modal div[style*="background:#f8f9fa"] {
        padding: 0.75rem !important;
        margin-bottom: 1rem !important;
    }
    
    #payment-required-modal h3 {
        font-size: 1rem !important;
        margin-bottom: 0.4rem !important;
    }
    
    #payment-required-modal ul {
        padding-left: 1rem !important;
    }
    
    #payment-required-modal li {
        font-size: 0.85rem !important;
        margin-bottom: 0.25rem !important;
    }
    
    #payment-required-modal button {
        width: 100% !important;
        margin-top: 0.5rem !important;
        padding: 0.75rem 1rem !important;
        font-size: 0.9rem !important;
    }
    
    #payment-required-modal #proceed-to-payment-btn {
        margin-bottom: 0.5rem !important;
    }
    
    /* Mobile styles for credit modal - simplified */
    .credit-modal-info h3 {
        font-size: 1.1rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    /* Hide complex process info on mobile */
    .credit-process-info {
        display: none !important;
    }
    
    /* Simplify credit option */
    .credit-purchase-options {
        margin-top: 0.5rem !important;
    }
    
    .credit-option {
        padding: 0.75rem !important;
        border-radius: 8px !important;
        text-align: center !important;
    }
    
    .credit-price .price {
        font-size: 1.3rem !important;
    }
    
    .credit-price .per-credit {
        font-size: 0.75rem !important;
    }
    
    /* Hide detailed benefits on mobile */
    .credit-benefits {
        display: none !important;
    }
}

/* Topic Groups Styles */
.topic-groups {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 1rem;
}

.topic-group {
    background: #f8fafc;
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
}

.topic-group h3 {
    color: #1f2937;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.topic-group h3 i {
    color: #3b82f6;
}

.topic-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

/* Mobile Topic Groups */
@media (max-width: 768px) {
    .topic-groups {
        gap: 1rem;
        margin-top: 0.5rem;
    }
    
    .topic-group {
        padding: 1rem;
        border-radius: 12px;
    }
    
    .topic-group h3 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .topic-options {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .topic-card {
        padding: 1rem;
        min-height: 100px;
    }
}

.topic-option {
    position: relative;
}

.topic-option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.topic-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-height: 120px;
    justify-content: center;
    position: relative;
}

.topic-card i {
    font-size: 2rem;
    color: #6b7280;
    transition: all 0.3s ease;
}

.topic-card span {
    font-weight: 500;
    color: #374151;
    font-size: 0.9rem;
    line-height: 1.4;
}

.topic-option:hover .topic-card {
    border-color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.topic-option input[type="checkbox"]:checked + .topic-card {
    border-color: #3b82f6;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}

.topic-option input[type="checkbox"]:checked + .topic-card i {
    color: white;
}

.topic-option input[type="checkbox"]:checked + .topic-card span {
    color: white;
}

.topic-option input[type="checkbox"]:checked + .topic-card::after {
    content: '✓';
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: #10b981;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    animation: fadeIn 0.3s ease;
}

@media (max-width: 768px) {
    .topic-options {
        grid-template-columns: 1fr;
    }
    
    .topic-card {
        min-height: 100px;
        padding: 1rem;
    }
    
    .topic-card span {
        font-size: 0.85rem;
    }
}

/* Topic Expertise Checkmark Fix */
.topic-option input[type="checkbox"]:checked + .topic-card::after {
    content: '✓' !important;
    position: absolute !important;
    top: 0.75rem !important;
    right: 0.75rem !important;
    background: #10b981 !important;
    color: white !important;
    width: 24px !important;
    height: 24px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0.75rem !important;
    font-weight: bold !important;
    animation: fadeIn 0.3s ease !important;
    z-index: 10 !important;
}

/* Availability Styles */
.availability-info {
    background: #e0f2fe;
    border: 1px solid #0284c7;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.availability-info i {
    color: #0284c7;
    font-size: 1.2rem;
}

.availability-info p {
    color: #0c4a6e;
    font-weight: 500;
    margin: 0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.availability-info p:last-child {
    color: #059669;
    font-weight: 600;
}

.availability-info p:last-child i {
    color: #fbbf24;
}

.availability-options {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.day-availability {
    background: #f8fafc;
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
}

.day-availability h3 {
    color: #1f2937;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.day-availability h3 i {
    color: #3b82f6;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.time-slot-option {
    display: block;
    cursor: pointer;
}

.time-slot-option input[type="checkbox"] {
    display: none;
}

.time-slot-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.25rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.time-slot-card i {
    font-size: 1.5rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
    display: block;
    transition: all 0.3s ease;
}

.time-slot-card span {
    font-weight: 500;
    color: #374151;
    font-size: 0.9rem;
    display: block;
    transition: all 0.3s ease;
}

.time-slot-option:hover .time-slot-card {
    border-color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.time-slot-option input[type="checkbox"]:checked + .time-slot-card {
    border-color: #3b82f6;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.25);
}

.time-slot-option input[type="checkbox"]:checked + .time-slot-card i {
    color: white;
}

.time-slot-option input[type="checkbox"]:checked + .time-slot-card span {
    color: white;
}

.time-slot-option input[type="checkbox"]:checked + .time-slot-card::after {
    content: '✓';
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: #10b981;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
    animation: fadeIn 0.3s ease;
}

@media (max-width: 768px) {
    /* Hide availability section on mobile */
    .availability-section {
        display: none !important;
    }
}

/* About Page Styles */
.about-section {
    padding: 120px 0 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
    position: relative;
}

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

.about-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: slideInUp 0.8s ease-out;
}

.about-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.about-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #fbbf24);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.about-card:hover::before {
    transform: scaleX(1);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #2563eb;
}

.about-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.about-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: transform 0.5s ease;
}

.about-card:hover .about-icon::after {
    transform: rotate(45deg) translate(50%, 50%);
}

.about-icon i {
    font-size: 2rem;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.about-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
    flex-shrink: 0;
}

.about-card p {
    color: #6b7280;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

.about-founder {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    animation: slideInUp 1s ease-out 0.3s both;
}

.founder-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.founder-details {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.founder-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.founder-text p {
    color: #6b7280;
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.founder-text a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.founder-text a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* Mobile About Styles */
@media (max-width: 768px) {
    .about-section {
        padding: 100px 0 3rem 0;
    }
    
    .about-header h1 {
        font-size: 2.5rem;
    }
    
    .about-header p {
        font-size: 1.1rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .about-card {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }
    
    .about-icon {
        width: 70px;
        height: 70px;
    }
    
    .about-icon i {
        font-size: 1.8rem;
    }
    
    .about-card h3 {
        font-size: 1.3rem;
    }
    
    .about-card p {
        font-size: 0.95rem;
    }
    
    .about-founder {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }
    
    .founder-info h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .founder-details {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .founder-text h3 {
        font-size: 1.5rem;
    }
    
    .founder-text p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about-header h1 {
        font-size: 2rem;
    }
    
    .about-header p {
        font-size: 1rem;
    }
    
    .about-card {
        padding: 1.5rem 1rem;
    }
    
    .about-icon {
        width: 60px;
        height: 60px;
    }
    
    .about-icon i {
        font-size: 1.5rem;
    }
    
    .about-card h3 {
        font-size: 1.2rem;
    }
    
    .about-card p {
        font-size: 0.9rem;
    }
    
    .about-founder {
        padding: 1.5rem 1rem;
    }
    
    .founder-info h2 {
        font-size: 1.8rem;
    }
    
    .founder-text h3 {
        font-size: 1.3rem;
    }
    
    .founder-text p {
        font-size: 0.95rem;
    }
}

/* Datenschutz Page Styles */
.datenschutz-section {
    padding: 120px 0 5rem 0;
    background: #f8fafc;
    position: relative;
}

.datenschutz-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.datenschutz-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    text-align: center;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.datenschutz-date {
    text-align: center;
    color: #6b7280;
    font-size: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.datenschutz-intro {
    background: #f8fafc;
    border-radius: 8px;
    padding: 1.25rem;
    margin-bottom: 2rem;
    border-left: 3px solid #2563eb;
}

.datenschutz-intro p {
    color: #374151;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

.datenschutz-content h2 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin: 1.5rem 0 0.75rem 0;
    padding-bottom: 0.25rem;
    border-bottom: 1px solid #e5e7eb;
}

.datenschutz-content h2:first-of-type {
    margin-top: 0;
}

/* Kompaktere Sections */
.datenschutz-content .datenschutz-section {
    margin-bottom: 1.5rem;
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
}

.datenschutz-content .datenschutz-section:last-child {
    margin-bottom: 0;
}

.datenschutz-details {
    background: #f8fafc;
    border-radius: 6px;
    padding: 1rem;
    margin-bottom: 0.75rem;
    border: 1px solid #e2e8f0;
}

.datenschutz-details p {
    color: #374151;
    line-height: 1.5;
    margin: 0;
    font-size: 0.95rem;
}

.datenschutz-table {
    margin: 0.75rem 0;
    overflow-x: auto;
}

.datenschutz-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.datenschutz-table th {
    background: #2563eb;
    color: white;
    padding: 0.75rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.85rem;
}

.datenschutz-table td {
    padding: 0.75rem;
    border-bottom: 1px solid #e5e7eb;
    color: #374151;
    line-height: 1.4;
    font-size: 0.9rem;
}

.datenschutz-table tr:last-child td {
    border-bottom: none;
}

.datenschutz-table tr:hover {
    background: #f8fafc;
}

.datenschutz-note {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 6px;
    padding: 0.875rem;
    margin: 1rem 0;
    color: #92400e;
    font-size: 0.9rem;
    line-height: 1.5;
}

.datenschutz-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.datenschutz-list li {
    padding: 0.5rem 0;
    color: #374151;
    line-height: 1.6;
    position: relative;
    padding-left: 1.25rem;
}

.datenschutz-list li::before {
    content: '•';
    color: #2563eb;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0.5rem;
}

/* Mobile Responsive für Datenschutz */
@media (max-width: 768px) {
    .datenschutz-section {
        padding: 100px 0 3rem 0;
    }
    
    .datenschutz-content {
        margin: 0 1rem;
        padding: 2rem 1.5rem;
        border-radius: 12px;
    }
    
    .datenschutz-content h1 {
        font-size: 2rem;
    }
    
    .datenschutz-content h2 {
        font-size: 1.3rem;
    }
    
    .datenschutz-table {
        margin: 1rem 0;
    }
    
    .datenschutz-table table {
        font-size: 0.9rem;
    }
    
    .datenschutz-table th,
    .datenschutz-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .datenschutz-details,
    .datenschutz-intro {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .datenschutz-content {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
    }
    
    .datenschutz-content h1 {
        font-size: 1.8rem;
    }
    
    .datenschutz-content h2 {
        font-size: 1.2rem;
    }
    
    .datenschutz-table table {
        font-size: 0.8rem;
    }
    
    .datenschutz-table th,
    .datenschutz-table td {
        padding: 0.5rem 0.25rem;
    }
}

/* Verbesserte mobile Responsivität für Datenschutz */
@media (max-width: 768px) {
    .datenschutz-content {
        margin: 0 1rem;
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .datenschutz-content h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .datenschutz-content h2 {
        font-size: 1.2rem;
        margin: 1.25rem 0 0.75rem 0;
    }
    
    .datenschutz-intro {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .datenschutz-intro p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .datenschutz-details {
        padding: 0.875rem;
        margin-bottom: 0.75rem;
    }
    
    .datenschutz-details p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    /* Verbesserte Tabellen-Darstellung auf Mobile */
    .datenschutz-table {
        margin: 1rem 0;
        border-radius: 8px;
        overflow: hidden;
    }
    
    .datenschutz-table table {
        font-size: 0.85rem;
        min-width: 100%;
    }
    
    .datenschutz-table th {
        padding: 0.75rem 0.5rem;
        font-size: 0.8rem;
        white-space: nowrap;
    }
    
    .datenschutz-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.8rem;
        line-height: 1.3;
        word-wrap: break-word;
    }
    
    /* Horizontales Scrollen für komplexe Tabellen */
    .datenschutz-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .datenschutz-table table {
        min-width: 600px; /* Mindestbreite für bessere Lesbarkeit */
    }
    
    .datenschutz-note {
        padding: 0.75rem;
        font-size: 0.85rem;
        margin: 0.75rem 0;
    }
    
    .datenschutz-list {
        margin: 0.75rem 0;
    }
    
    .datenschutz-list li {
        padding: 0.375rem 0;
        font-size: 0.9rem;
        line-height: 1.4;
        padding-left: 1rem;
    }
    
    .datenschutz-list li::before {
        top: 0.375rem;
    }
}

@media (max-width: 480px) {
    .datenschutz-section {
        padding: 80px 0 2rem 0;
    }
    
    .datenschutz-content {
        padding: 1.25rem;
        margin: 0 0.5rem;
        border-radius: 8px;
    }
    
    .datenschutz-content h1 {
        font-size: 1.6rem;
        margin-bottom: 0.75rem;
    }
    
    .datenschutz-date {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        padding-bottom: 0.75rem;
    }
    
    .datenschutz-content h2 {
        font-size: 1.1rem;
        margin: 1rem 0 0.5rem 0;
    }
    
    .datenschutz-intro {
        padding: 0.875rem;
        margin-bottom: 1.25rem;
    }
    
    .datenschutz-intro p {
        font-size: 0.9rem;
    }
    
    .datenschutz-details {
        padding: 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .datenschutz-details p {
        font-size: 0.85rem;
    }
    
    /* Kompakte Tabellen für sehr kleine Bildschirme */
    .datenschutz-table table {
        font-size: 0.75rem;
        min-width: 500px;
    }
    
    .datenschutz-table th {
        padding: 0.5rem 0.375rem;
        font-size: 0.75rem;
    }
    
    .datenschutz-table td {
        padding: 0.5rem 0.375rem;
        font-size: 0.75rem;
    }
    
    .datenschutz-note {
        padding: 0.625rem;
        font-size: 0.8rem;
        margin: 0.5rem 0;
    }
    
    .datenschutz-list li {
        font-size: 0.85rem;
        padding: 0.25rem 0;
        padding-left: 0.875rem;
    }
    
    .datenschutz-list li::before {
        top: 0.25rem;
        left: 0;
    }
}

/* Tablet-spezifische Anpassungen */
@media (min-width: 481px) and (max-width: 768px) {
    .datenschutz-content {
        padding: 2rem;
        margin: 0 1.5rem;
    }
    
    .datenschutz-content h1 {
        font-size: 2.2rem;
    }
    
    .datenschutz-content h2 {
        font-size: 1.4rem;
    }
    
    .datenschutz-table table {
        min-width: 650px;
    }
}

/* Landscape-Modus für Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .datenschutz-section {
        padding: 60px 0 2rem 0;
    }
    
    .datenschutz-content {
        padding: 1.5rem;
    }
    
    .datenschutz-content h1 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .datenschutz-date {
        margin-bottom: 1rem;
    }
}

/* Zusätzliche Verbesserungen für sehr kleine Bildschirme */
@media (max-width: 360px) {
    .datenschutz-content {
        padding: 1rem;
        margin: 0 0.25rem;
        border-radius: 6px;
    }
    
    .datenschutz-content h1 {
        font-size: 1.4rem;
        line-height: 1.2;
    }
    
    .datenschutz-content h2 {
        font-size: 1rem;
        margin: 0.75rem 0 0.5rem 0;
    }
    
    .datenschutz-intro {
        padding: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .datenschutz-intro p {
        font-size: 0.85rem;
    }
    
    .datenschutz-details {
        padding: 0.625rem;
    }
    
    .datenschutz-details p {
        font-size: 0.8rem;
    }
    
    /* Kompakte Tabellen für sehr kleine Bildschirme */
    .datenschutz-table table {
        font-size: 0.7rem;
        min-width: 450px;
    }
    
    .datenschutz-table th {
        padding: 0.375rem 0.25rem;
        font-size: 0.7rem;
    }
    
    .datenschutz-table td {
        padding: 0.375rem 0.25rem;
        font-size: 0.7rem;
    }
    
    .datenschutz-note {
        padding: 0.5rem;
        font-size: 0.75rem;
    }
    
    .datenschutz-list li {
        font-size: 0.8rem;
        padding: 0.25rem 0;
        padding-left: 0.75rem;
    }
}

/* Verbesserte Touch-Interaktion für mobile Geräte */
@media (hover: none) and (pointer: coarse) {
    .datenschutz-table {
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }
    
    .datenschutz-table::-webkit-scrollbar {
        height: 6px;
    }
    
    .datenschutz-table::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 3px;
    }
    
    .datenschutz-table::-webkit-scrollbar-thumb {
        background: #c1c1c1;
        border-radius: 3px;
    }
    
    .datenschutz-table::-webkit-scrollbar-thumb:hover {
        background: #a8a8a8;
    }
}

/* Impressum Page Styles */
.impressum-section {
    padding: 120px 0 5rem 0;
    background: #f8fafc;
    position: relative;
}

.impressum-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.impressum-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.impressum-content .impressum-section {
    margin-bottom: 2.5rem;
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
}

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

.impressum-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #2563eb;
}

.impressum-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #374151;
    margin: 1.5rem 0 0.75rem 0;
}

.impressum-content h3:first-of-type {
    margin-top: 0;
}

.impressum-content p {
    color: #374151;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 1rem;
}

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

.impressum-details {
    background: #f8fafc;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid #e2e8f0;
}

.impressum-details h3 {
    margin-top: 0;
    color: #2563eb;
    font-size: 1.1rem;
}

.impressum-details p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

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

.impressum-details strong {
    color: #1f2937;
}

/* Mobile Responsive für Impressum */
@media (max-width: 768px) {
    .impressum-section {
        padding: 100px 0 3rem 0;
    }
    
    .impressum-content {
        margin: 0 1rem;
        padding: 2rem 1.5rem;
        border-radius: 12px;
    }
    
    .impressum-content h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .impressum-content h2 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .impressum-content h3 {
        font-size: 1.1rem;
        margin: 1.25rem 0 0.5rem 0;
    }
    
    .impressum-content p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .impressum-details {
        padding: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .impressum-details p {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }
}

@media (max-width: 480px) {
    .impressum-content {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
    }
    
    .impressum-content h1 {
        font-size: 1.8rem;
        margin-bottom: 1.25rem;
    }
    
    .impressum-content h2 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .impressum-content h3 {
        font-size: 1rem;
        margin: 1rem 0 0.5rem 0;
    }
    
    .impressum-content p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .impressum-details {
        padding: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .impressum-details p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
}