.services-section {
    background: #ffffff;
    padding: 40px 20px;
}

.services-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 24px;
}

.services-heading {
    text-align: start;
    margin-bottom: 20px;
}

.services-heading h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: rgb(237, 36, 78);
    padding-left: 12px;
}

.service-card {
    flex: 1 1 calc(20% - 24px);
    min-width: 200px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 30px 20px;
    color: #111827;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    cursor: default;
}

.service-card:hover {
    transform: translateY(-6px) scale(1.02);
    background: #ffffff;
    /* subtle lift */
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
    border-color: #d1d5db;
    /* slightly darker border */
}

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

.service-card p {
    font-size: 1rem;
    line-height: 1.5;
    color: #4b5563;
}

/* Responsive breakpoints */
@media (max-width: 1000px) {
    .service-card {
        flex: 1 1 calc(50% - 24px);
    }
}

@media (max-width: 600px) {
    .service-card {
        flex: 1 1 100%;
    }
}