:root {
    --box: #071738;
    --text: #eaf6ff;
    --muted: #bcd7f3;
    --accent: #2f80ed;
    --radius: 12px;
    --gap: 24px;
  }

.pricing-section {
    color: #ffffff;
    display: flex;
    align-items: center;
    margin: 0;
    overflow-x: hidden; /* prevent scrollbars on small devices */
    flex-direction: column;
    padding: 60px;
    /*scroll-margin-top: 45px;*/
    background-color: #2a5262;
    padding-top:30px;
    min-height: 100vh; /*make room for scrolling*/
}

    .process {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        align-items: flex-start;
        justify-content: center;
        max-width: 1400px;
        width: 100%;
        box-sizing: border-box;
    }

    .process-row {
        display: flex;
        align-items: center;
        gap: 30px;
        flex-wrap: nowrap;
        width: 100%;
        box-sizing: border-box;
    }

    .step {
        flex: 1 1 240px;
        text-align: center;
        display: flex;
        flex-direction: column;
        min-height: 210px;
        box-sizing: border-box;
        border: 1px solid #ffffff;
    }

    .step h3 {
        margin: 0 0 8px;
        font-size: 1.1rem;
        border-bottom: 1px solid #ffffff;
        padding: 0.8rem;
    }

    .step p {
        margin: 0;
        color: #ffffff;
        font-size: 0.9rem;
        line-height: 2;
        padding: 0.8rem;
    }

        .step .hlight-b {
            color: #958e6a;
        }

    .arrow {
        width: 32px;
        height: 32px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .arrow > img { width:20px;}

    /* Desktop: horizontal layout */
    @media (min-width: 769px) {
        .process-row {
        flex-direction: row;
        }
    }

    /* Mobile: stacked layout with proper margins */
    @media (max-width: 768px) {
        .process-row {
        flex-direction: column;
        align-items: stretch;
        gap: calc(var(--gap) / 1.5);
        padding-right: 10px; /* add breathing space on right */
        }
        .arrow {
        margin: 8px auto;
        }
        .arrow img {
        transform: rotate(90deg);
        }
        .step {
        width: 100%;
        flex: 1 1 auto;
        min-height: initial;
        }
    }