/* 
 * how-it-works.css - Funktionsweise-Sektion Styles
 * LineTrack Website
 */

 .how-it-works {
    background-color: var(--light-gray);
}

.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
}

.step {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    text-align: center;
    position: relative;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-sm);
}

.step-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.step-text {
    font-size: 0.95rem;
    color: var(--medium-gray);
}

.step-icon {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

/* Verbindungslinie zwischen Schritten (optional) */
.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -20px;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
    opacity: 0.3;
}

@media (max-width: 991px) {
    .step:not(:last-child)::after {
        display: none;
    }
}