
.arrow-container {
    position: relative;
    display:flex;
    height: 200px;
    margin: 60px 0;
    background: linear-gradient(135deg, #e5e7ea, #d1bee3);
}

.step {
    text-align: center;
}

.step-circle,
.step-label {
    display: block;
    margin: 0 auto;
}


.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e0);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #4a5568;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 3px solid white;
}

.step-label {
    margin-top: 12px;
    font-size: 1rem;
    font-weight: bold;
    color: #4a5568;
    transition: all 0.3s ease;
    opacity: 0.8;
}


.step:hover .step-circle {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.step:hover .step-label {
    color: #667eea;
    opacity: 1;
    transform: translateY(-2px);
}

.tooltip {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(45, 55, 72, 0.95);
    color: white;
    padding: 15px 20px;
    border-radius: 12px;
    font-size: 0.85rem;
    line-height: 1.4;
    max-width: 250px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 100;
}

.tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid rgba(45, 55, 72, 0.95);
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
    padding: 0 10%;
}

.progress-bar {
    position: absolute;
    top: 36%;
    left: 10%;
    height: 12px;
    transform: translateY(-6px);
    border-radius: 6px;
    transition: width 0.8s ease;
    width: 0%;
    z-index: 5;
}

.info-panel {
    padding: 10%;
    min-height:30%;
}

.info-title {
    font-size: var(--card-title-size);
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 10px;
}

.info-description {
    color: #4a5568;
    line-height: 1.6;
    font-size: var(--card-paragraph-size);
}

@media (max-width: 768px) {
    .container {
        padding: 20px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .steps-container {
        padding: 0 5%;
    }
    
    .step-circle {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .step-label {
        font-size: 0.8rem;
        text-align: center;
    }
    
    .tooltip {
        max-width: 200px;
        font-size: 0.8rem;
    }
}