.hero-section {
    background: linear-gradient(135deg, var(--datenhaltende-color) 0%, var(--kommunen-color) 100%);
    color: white;
    padding: 4rem 0;
}

.section-spacing {
    padding: 4rem 0;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}


/* Icon Box */
.icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.5rem;
}

.check-icon {
    color: #28a745;
}

.cross-icon {
    color: #dc3545;
}

.comparison-card-old {
    border-left: 4px solid #dc3545;
}

.comparison-card-new {
    border-left: 4px solid #28a745;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #667eea;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.transparency-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section {
    padding: 60px 0;
}

.section-alt {
    background-color: #fff;
}

.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

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

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.process-step {
    position: relative;
    padding-left: 80px;
    margin-bottom: 30px;
}

.process-step .step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: white;
}

.process-step::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 55px;
    width: 2px;
    height: calc(100% + 10px);
    background-color: #dee2e6;
}

.process-step:last-child::before {
    display: none;
}

.check-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.check-item i {
    margin-right: 10px;
    margin-top: 3px;
}

.legal-card {
    border-left: 4px solid var(--color-land);
}

.tooltip-custom {
    cursor: help;
    border-bottom: 1px dotted;
}

.badge-custom {
    font-size: 0.85rem;
    padding: 8px 16px;
}

.connector-line {
    height: 40px;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-kommunen), var(--color-land));
    margin: 0 auto;
}

.icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.5rem;
}

/* Check List */
.list-unstyled li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
}

/* Check List */
.check-list li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
}

/* Cross List */
.cross-list li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
}



/* Benefit Badge */
.benefit-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: #E8F5E9;
    border-radius: 50px;
    color: #1B5E20;
    font-weight: 500;
    margin: 0.25rem;
}

/* Section Divider */
.section-divider {
    height: 4px;
    width: 60px;
    background: linear-gradient(90deg, #0D47A1, #1976D2);
    border-radius: 2px;
}