#what-we-do {
    background: #ffffff; /* Plain white */
}

.section-padding {
    padding-top: 160px;
    padding-bottom: 80px;
}

.subheading {
    font-size: 1.1rem;
    color: #666;
    font-style: italic;
    margin-top: 20px;
}

#what-we-do .row {
    margin-top: 30px; /* Kept from previous update */
}

.service-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    border: 2px solid transparent; /* Added from reason-card */
    text-align: center; /* Added from reason-card for centered content */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Kept existing hover transition */
}

.service-card:hover {
    transform: scale(1.05); /* Kept existing hover effect */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* Kept existing hover effect */
}

.service-card i {
    color: #16292F;
    display: block; /* Added from reason-card to ensure centering */
    margin-left: auto; /* Added from reason-card */
    margin-right: auto; /* Added from reason-card */
}

.service-card h5 {
    margin-bottom: 15px; /* Adjusted from 10px in reason-card to match previous service-card */
    text-transform: uppercase; /* Kept from previous update */
}

.service-card p {
    margin: 0;
    font-size: 0.95rem;
}

@media (max-width: 576px) {
    .service-card {
        padding: 15px;
    }
    .service-card i {
        font-size: 2rem;
    }
    .service-card h5 {
        font-size: 1.1rem;
        text-transform: uppercase; /* Kept from previous update */
    }
    .service-card p {
        font-size: 0.85rem;
    }
    #what-we-do .section-heading {
        text-align: center;
    }
}