.services-ppoz {
    padding: 100px 20px;
    background: url('../../img/ppoz-bp.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    text-align: center;
    position: relative;
}

.services-bhp {
    padding: 100px 20px;
    background: url('../../img/bhp-bp.png') no-repeat center center/cover;
    background-attachment: fixed;
    text-align: center;
    position: relative;
}

.services-ppoz::before,
.services-bhp::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.services-ppoz > *,
.services-bhp > * {
    position: relative;
    z-index: 1;
}

.services-ppoz h2,
.services-bhp h2 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 40px;
    font-weight: 700;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #fff;
    border-radius: 10px;
    padding: 28px 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}

.service-card h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
    color: #333;
    font-weight: 600;
}

.service-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    flex-grow: 1;
}

.btn-more {
    display: inline-block;
    margin-top: 16px;
    padding: 8px 16px;
    font-size: 0.9rem;
    color: #d32f2f;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background-color 0.25s ease, color 0.25s ease;
    align-self: flex-start;
}

.btn-more:hover {
    background-color: #fef2f2;
    color: #b71c1c;
}

@media (max-width: 768px) {
    .services-ppoz,
    .services-bhp {
        padding: 60px 16px;
        background-attachment: scroll;
    }

    .service-cards {
        grid-template-columns: 1fr;
    }

    .services-ppoz h2,
    .services-bhp h2 {
        font-size: 1.8rem;
        margin-bottom: 24px;
    }
}