
.process-section {
    background-color: #f9fafb;
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 40px;
}
.process-section-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 35px;
    color: #333333;
    text-align: center;
    margin-bottom: 32px;
}
.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}
.step {
    flex: 1;
    min-width: 150px;
    text-align: center;
    background: #ffffff;
    border-radius: 20px;
    padding: 20px 12px;
    border: 1px solid #e2e8f0;
    transition: box-shadow 0.2s;
}
.step:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.step-number {
    background-color: #0047AB;
    color: white;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 40px;
    display: inline-block;
    font-weight: 700;
    margin-bottom: 12px;
}
.step h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0047AB;
    margin-bottom: 8px;
}
.step p {
    font-size: 13px;
    color: #555;
}
@media (max-width: 768px) {
    .process-section {
        padding: 24px;
    }
    .process-section-title {
        font-size: 28px;
        margin-bottom: 24px;
    }
    .process-steps {
        flex-direction: column;
    }
}
