.calc-path {
    position: relative;
    background: #F8F8F6;
    padding: 96px 24px 64px;
}

/* The two card side by side */
.calc-path-grid {
    max-width: 1040px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

/* The individual cards */
.calc-path-card {
    background: #FFFFFF;
    border: 1px solid #D7DEEA;
    border-radius: 16px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    box-shadow: 0 2px 10px rgba(35, 58, 103, 0.06);
}

.calc-path-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #E6EEFB;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.calc-path-card h2 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 60px;
    font-size: 24px;
    color: #233A67;
    margin: 0;
}

.calc-path-card p {
    font-family: 'Roboto', sans-serif;
    font-size: 17px;
    color: black;
    margin: 0;
    max-width: 340px;
}

.calc-path-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 999px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    background: #233A67;
    color: #FFFFFF;
    border: 1.5px solid #233A67;
    transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.calc-path-btn:hover {
    background: #17294D;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(35, 58, 103, 0.25);
}

@media (max-width: 900px) {
    .calc-path {
        padding: 72px 24px 48px;
    }

    .calc-path-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        gap: 24px;
    }

    .calc-path-card {
        padding: 32px 24px;
    }

    .calc-path-icon {
        width: 72px;
        height: 72px;
    }

    .calc-path-card h2 {
        font-size: 20px;
    }
}

@media (max-width: 600px) {
    .calc-path {
        padding: 56px 20px 40px;
    }

    .calc-path-card {
        padding: 28px 20px;
    }

    .calc-path-card p {
        font-size: 14px;
    }

    .calc-path-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 14px;
    }
}