.process {
    padding: 100px 0;
    background: #f5f7fa;
}

.process .container {
    width: min(1500px, calc(100% - 60px));
    margin: auto;
}

.process .section-heading {
    max-width: 1400px;
    margin: 0 auto 70px;
    text-align: center;
}

.process .section-heading span {
    display: inline-block;
    margin-bottom: 15px;
    color: #f5b82e;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
}

.process .section-heading h2 {
    margin-bottom: 20px;
    color: #082544;
    font-size: 52px;
    line-height: 1.25;
    white-space: nowrap;
}

.process .section-heading p {
    color: #666666;
    font-size: 18px;
}

.process-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 25px;
    align-items: stretch;
}

.process-grid::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 35px;
    left: 10%;
    right: 10%;
    height: 4px;
    background: #f5b82e;
}

.process-item {
    position: relative;
    z-index: 2;
    padding: 35px 25px;
    text-align: center;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.process-item:hover {
    transform: translateY(-10px);
}

.process-item h3 {
    margin: 20px 0 15px;
    color: #082544;
    font-size: 24px;
}

.process-item p {
    margin: 0;
    color: #666666;
    line-height: 1.7;
}

.number {
    display: flex;
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    align-items: center;
    justify-content: center;
    color: #082544;
    background: #f5b82e;
    border-radius: 50%;
    font-size: 26px;
    font-weight: 700;
}

@media (max-width: 1100px) {
    .process-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .process-grid::before {
        display: none;
    }

    .process .section-heading h2 {
        white-space: normal;
    }
}

@media (max-width: 760px) {
    .process {
        padding: 70px 0;
    }

    .process .container {
        width: min(100% - 30px, 1500px);
    }

    .process .section-heading {
        margin-bottom: 45px;
    }

    .process .section-heading h2 {
        font-size: 36px;
        white-space: normal;
    }

    .process .section-heading p {
        font-size: 16px;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }
}