.pf-step {
    max-width: 928px;
    margin: 0 auto;
    padding: 32px;
    color: #161615;
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
}

.pf-form {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.pf-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pf-section__title,
.pf-step h1,
.pf-step h2,
.pf-step h3 {
    position: relative;
    margin: 0;
    font-size: 22px;
    line-height: 32px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif !important;
}

/* Offer cards */
.pf-offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pf-info-text {
    padding: 24px;
    background: #f5f7f8;
    font-size: 15px;
    line-height: 1.5;
    color: #161615;
    text-align: left;
    border-radius: 0;
}

.pf-offer-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
    min-height: 120px;
    background: #fff;
    border: 2px solid #e5e5e5;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.pf-offer-card__title {
    font-size: 18px;
    line-height: 27px;
    font-weight: 400;
}

.pf-offer-card__price {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

.pf-offer-card input[type="radio"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.pf-offer-card:hover {
    border-color: #cfcfcf;
}

.pf-offer-card.selected {
    border-color: #1a1a1a;
    box-shadow: 0 0 0 1px #1a1a1a inset;
    background: #eb4f4f20;
    /* Light blue-ish fallback if I'm wrong, but let's try #ebf4ff */
}

/* Let's actually use a clean light blue */
.pf-offer-card.selected {
    background: #ebf4ff;
}

.pf-offer-card__price {
    display: none;
}

/* Details form */
.pf-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 0.6fr;
    grid-template-areas:
        "title-det title-det title-pri"
        "field-dat field-pla field-pri";
    column-gap: 24px;
    row-gap: 8px;
    align-items: stretch;
}

.pf-details-grid__title-details {
    grid-area: title-det;
}

.pf-details-grid__title-price {
    grid-area: title-pri;
}

.pf-details-grid__field-date {
    grid-area: field-dat;
}

.pf-details-grid__field-plate {
    grid-area: field-pla;
}

.pf-details-grid__field-price {
    grid-area: field-pri;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pf-field {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 16px;
    width: 100%;
}

.pf-field__label {
    font-size: 15px;
    line-height: 24px;
    font-weight: 700;
    text-transform: uppercase;
}

.pf-field__title {
    font-size: 22px;
    line-height: 32px;
    font-weight: 700;
    text-transform: uppercase;
    color: #161615;
    margin: 0;
    display: block;
}

.pf-field__subtext {
    font-size: 16px;
    line-height: 24px;
    color: #1a1a1a;
    margin: 0;
    display: block;
}

.pf-details-grid__field-price {
    gap: 12px;
}

.pf-input-wrap {
    position: relative;
    margin-top: auto;
}

.pf-input {
    width: 100%;
    height: 52px;
    padding: 12px 16px;
    background: #fff;
    border: 2px solid #e5e5e5;
    font-size: 15px;
    line-height: 24px;
    color: #161615;
    border-radius: 0;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    box-sizing: border-box;
    margin-top: auto;
}

.pf-input:focus {
    border-color: #1a1a1a;
    box-shadow: 0 0 0 1px #1a1a1a inset;
}

.pf-input--date {
    padding-right: 16px;
}

.pf-button {
    align-self: flex-end;
    min-width: 100px;
    height: 48px;
    padding: 12px 20px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    text-align: center;
    font-size: 16px;
    line-height: 24px;
    cursor: pointer;
    transition: transform 0.1s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.pf-button:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.pf-button:active {
    transform: translateY(1px);
}

/* Responsive tweaks */
@media (max-width: 640px) {
    .pf-step {
        padding: 24px 16px;
    }

    .pf-form {
        gap: 32px;
    }

    .pf-section__title {
        font-size: 22px;
    }

    .pf-details-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "title-det"
            "field-dat"
            "field-pla"
            "title-pri"
            "field-pri";
        gap: 16px;
    }

    .pf-details-grid__field-price {
        align-self: stretch;
    }
}