.services-pillars-section {
    padding: 20px 0 80px;
}

.services-pillars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card {
    background: #ffffff;
    border-radius: 32px;
    overflow: hidden;
    height: 100%;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-link:hover .service-card {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.service-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.service-card h3 {
    margin: 0;
    padding: 36px 28px 24px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    color: #000000;
    text-align: center;
    flex-grow: 1;
}

.service-card::after {
    content: "Click to explore";
    display: block;
    text-align: center;
    font-size: 18px;
    color: #000000;
    padding: 0 0 34px;
}

@media (max-width: 768px) {
    .services-pillars-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .service-card {
        min-height: auto;
    }

    .service-card img {
        height: 240px;
    }

    .service-card h3 {
        font-size: 20px;
        padding: 28px 20px 18px;
    }

    .service-card::after {
        font-size: 16px;
        padding-bottom: 28px;
    }
}