.service-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.service-row {
    display: grid;
    grid-template-columns: 1.5fr repeat(2, 1fr);
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.service-row>div {
    padding: 15px;
    border-right: 1px solid #eee;
}

.service-row>div:last-child {
    border-right: none;
}

.service-row:not(.header-row)>div:last-child {
    font-weight: bold;
}

.service-row:not(.header-row)>div:first-child {
    font-weight: bold;
}

.header-row {
    background: #3e200a;
    color: #fff;
    font-weight: 500;
    text-align: center;
}

.footer-note {
    margin-top: 20px;
    font-style: italic;
    text-align: center;
    font-size: 0.95em;
    color: #444;
}

@media (max-width: 768px) {
    .service-row {
        display: block;
    }

    .service-row>div {
        border-right: none;
        border-bottom: 1px solid #eee;
    }

    .service-row>div:last-child {
        border-bottom: none;
    }

    .header-row {
        display: none;
    }
}