﻿.process-section {
    background: #EEF3F8;
}


.process-title {
    text-align: center;
    font-weight: 700;
    margin-bottom: 50px;
    /*color: #1b3b6f;*/
}

.process-flow {
    max-width: 700px;
    margin: auto;
}

.process-item {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 18px rgba(0,0,0,.08);
    transition: .3s;
}

    .process-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0,0,0,.12);
    }

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #D4AF37, #F7E08A);
    color: #1b1b1b;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(212,175,55,.45);
}

.arrow {
    text-align: center;
    font-size: 36px;
    color: #D4AF37;
    margin: 12px 0;
    font-weight: bold;
    text-shadow: 0 2px 6px rgba(212,175,55,.35);
}

.step-text h5 {
    margin-bottom: 6px;
  /*  color: #1b3b6f;*/
    font-weight: 600;
}

.step-text p {
    margin: 0;
    color: #666;
}
 