.pwa-banner {
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: #333;
    border-bottom: 1px solid #0072ff44;
    color: #f0f8ff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 999;
}

.pwa-banner i {
    color: #00c6ff;
    margin-right: 6px;
}

.pwa-banner div {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.pwa-banner button {
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: .2s;
}

#pwa-install-btn {
    background: #0072ff;
    color: #fff;
    font-weight: 600;
    padding: 7px 18px;
    border-radius: 6px;
}

#pwa-install-btn:hover {
    background: #005fd6;
}

#pwa-dismiss-btn {
    background: transparent;
    color: #f0f8ff;
    font-size: 18px;
    line-height: 1;
    padding: 0 4px;
}

@media (max-width: 480px) {
    .pwa-banner {
        font-size: 12px;
        padding: 8px 12px;
    }
    #pwa-install-btn {
        padding: 5px 12px;
        font-size: 12px;
    }
}

/* ---- Service grid fix: keep cards centered evenly, no lone card stretching full width ---- */
.service-grid {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 25px;
}

.service-grid .service {
    flex: 0 1 240px;
    max-width: 260px;
}

@media (max-width: 600px) {
    .service-grid .service {
        flex: 0 1 45%;
    }
}

/* ---- Section intro text (Mini Tools headings) ---- */
.section-intro {
    text-align: center;
    padding: 0 20px 25px;
}

.section-intro h2 {
    font-family: 'Poppins', sans-serif;
    color: #0072ff;
    font-size: 24px;
    margin-bottom: 8px;
    font-weight: 600;
}

.section-intro p {
    color: #666;
    font-size: 14px;
}
