.three-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

.three-steps-card {
    background-color: #0d1b2a;
    border-radius: 8px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.three-steps-card .card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.three-steps-card .step-label {
    color: #c97d2e;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 15px;
    letter-spacing: 1px;
}

.three-steps-card .step-number {
    color: #7a5c2e;
    font-size: 85px;
    font-weight: 800;
    line-height: 1;
    opacity: 0.8;
}

.three-steps-card .step-heading {
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.three-steps-card .step-desc {
    color: #c8d0d8;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1024px) {
    .three-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .three-steps-grid {
        grid-template-columns: 1fr;
    }
}