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

.main-title {
    color: #1a3c6b;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}

.subtitle {
    color: #6c757d;
    font-size: 22px;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.process-step {
    margin-bottom: 40px;
    position: relative;
}

.step-icon {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border: 3px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.step-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.step-number {
    position: absolute;
    top: -10px;
    left: -1px;
    width: 30px;
    height: 30px;
    background: #2c3e50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
}

.step-icon i {
    font-size: 2.5rem;
    color: #142044;
}

.step-title {
    color: #142044;
    font-weight: 500;
    margin-bottom: 15px;
    text-align: start;
}

.step-description {
    color: #6c757d;
    font-size: 18px;
    line-height: 1.6;
    text-align: start;
    max-width: 300px;
}

.step-description strong{
    color: #142044;
}

.step-icon img{
    width: 180px;
}

.connector-line {
    position: absolute;
    width: 2px;
    height: 60px;
    background: #dee2e6;
    left: 50%;
    transform: translateX(-50%);
    bottom: -50px;
    z-index: -1;
}

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

@media (min-width: 768px) {
    .process-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 60px 40px;
        align-items: start;
    }
    
    .connector-line {
        display: none;
    }
    
    .process-step:nth-child(odd) {
        text-align: right;
    }
    
    .process-step:nth-child(even) {
        text-align: left;
    }
    
    .process-step:nth-child(odd) .step-icon {
        margin-left: auto;
    }
    
    .process-step:nth-child(even) .step-icon {
        margin-right: auto;
    }
}

@media (min-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 80px 60px;
    }
    
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

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

.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(2) { animation-delay: 0.2s; }
.process-step:nth-child(3) { animation-delay: 0.3s; }
.process-step:nth-child(4) { animation-delay: 0.4s; }
.process-step:nth-child(5) { animation-delay: 0.5s; }
.process-step:nth-child(6) { animation-delay: 0.6s; }
.process-step:nth-child(7) { animation-delay: 0.7s; }
.process-step:nth-child(8) { animation-delay: 0.8s; }