.advantages-section {
    padding: 4rem 0;
    background: linear-gradient(to bottom, var(--bs-light), #fff);
    margin-top: -2rem;
    position: relative;
    z-index: 2;
}

.advantage-card {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.advantage-card .card-icon {
    margin-bottom: 1.5rem;
}

.advantage-card h3 {
    color: #001373;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.advantage-card p {
    color: var(--bs-gray-700);
    margin-bottom: 0;
    line-height: 1.6;
}

.advantage-card .icon-standard {
    margin: 0 auto;
    background: linear-gradient(135deg, #0CC0DF, #0CC0DF);
    color: white;
}

/* Intro Section Styling */
.intro-section {
    padding: 8rem 0;
    background: linear-gradient(to bottom, #fff, var(--bs-light));
}

.intro-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--bs-gray-700);
    margin-bottom: 3rem;
}

.feature-boxes {
    position: relative;
}

.feature-box {
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s ease;
    background: #fff;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-icon {
    margin-bottom: 1.5rem;
    display: inline-block;
}

.feature-content h3 {
    color: #001373;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-content p {
    color: var(--bs-gray-700);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Abstand zwischen Sektionen */
.intro-section,
.feature-section,
.scenario-section {
    padding: 6rem 0;
}

/* Zusätzlicher Abstand für Sektionen mit Hintergrund */
.feature-section.bg-light {
    padding: 8rem 0;
    margin: 4rem 0;
}

/* Baukastensystem Section Styling */
.feature-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, rgba(12, 192, 223, 0.05), rgba(0, 19, 115, 0.05));
}



.feature-image {
    position: relative;
    margin-bottom: 2rem;
}

.feature-badge {
    position: absolute;
    bottom: -20px;
    right: 30px;
    background: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-badge .icon-standard--sm {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #0CC0DF, #001373);
    color: white;
    margin-right: 0;
}

.feature-badge span {
    font-weight: 600;
    color: #001373;
}

.feature-item {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    height: 100%;
    box-shadow: 0 8px 20px rgba(12, 192, 223, 0.1);
    transition: all 0.3s ease;
    border: 2px solid rgba(12, 192, 223, 0.2);
    display: flex;
    flex-direction: column;
    position: relative;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(12, 192, 223, 0.2);
    border-color: rgba(12, 192, 223, 0.4);
}

.feature-item .icon-standard--xl {
    margin: 0 auto 1.5rem;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0CC0DF, #001373);
    color: white;
}

.feature-item h3 {
    color: #001373;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-item p {
    color: var(--bs-gray-700);
    margin: 0;
    line-height: 1.6;
}

.info-box {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 8px 20px rgba(12, 192, 223, 0.1);
    border: 2px solid rgba(12, 192, 223, 0.2);
    transition: all 0.3s ease;
}

.info-box:hover {
    box-shadow: 0 15px 30px rgba(12, 192, 223, 0.2);
    border-color: rgba(12, 192, 223, 0.4);
}

.info-box .d-flex {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.info-box .icon-standard--sm {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0CC0DF, #001373);
    color: white;
    flex-shrink: 0;
}

.info-box p {
    color: #001373;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.6;
}

/* Zusätzliche Animationen */
.feature-item {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.feature-item:nth-child(1) { animation-delay: 0.2s; }
.feature-item:nth-child(2) { animation-delay: 0.4s; }
.feature-item:nth-child(3) { animation-delay: 0.6s; }

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

.text-highlight {
    background: white;
    border-radius: 15px;
    padding: 1.5rem 2rem;
    box-shadow: 0 8px 20px rgba(12, 192, 223, 0.1);
    border: 2px solid rgba(12, 192, 223, 0.2);
    transition: all 0.3s ease;
    color: var(--bs-primary);
    font-weight: 500;
    display: inline-block;
    margin: 1.5rem 0;
}

.text-highlight:hover {
    box-shadow: 0 15px 30px rgba(12, 192, 223, 0.2);
    border-color: rgba(12, 192, 223, 0.4);
} 