/* =========================================
   SZOLGÁLTATÁS KÁRTYÁK
========================================= */

.services-page {
    background: #ffffff;
    /*padding: 0 var(--side-padding) 120px;*/
}

.services-page-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.sp-card {
    background: #ffffff;
    border-radius: 16px; /* kisebb */
    padding: 48px;       /* belső tér nő */
    box-shadow: 0 8px 30px rgba(17,50,81,.08);
    transition: transform .25s ease;
}

@media (hover:hover) {
    .sp-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 38px rgba(17,50,81,.12);
    }
}

/* H2 - NINCS külön háttér */
.sp-card-header {
    background: none;
    border: none;
    padding: 0 0 12px;
}

.sp-card-header h2 {
    font-size: 40px;
    font-weight: 400;
    margin: 0 0 18px;
    color: #133150; /* screenshot-hoz közelebb */
}

/* Body */
.sp-card-body {
    padding: 0;
}

.sp-card-body h3 {
    font-size: 24px;
    font-weight: 600;
    color: #133150;
    margin-bottom: 0;
}

.sp-card-body > p {
    font-size: 24px;
    line-height: 1.7;
    color: #2b3d52;
    margin-bottom: 24px;
    margin-top: 0;
}

/* Lista */
.sp-card-body ul {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}

.sp-card-body ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 1.7;
    color: #21364b;
}

.sp-card-body ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-size: 24px;
    line-height: 1;
}

.sp-card-body ul li strong {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #133150;
    margin-bottom: 3px;
}

/* GOMB — bézses + középen */
.sp-card-body .mp-btn {
    background: #d6c2a3;
    color: #ffffff;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 28px;
    text-align: center;
    font-size: 15px;

    display: block;        /* <<< EZ kell */
    width: fit-content;    /* <<< EZ kell */
    margin: 30px auto 0;   /* <<< KÖZÉPRE */
}
.sp-card-body .mp-btn:hover {
    background: #c3ae8f;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1024px) {
    .services-hero {
        padding-top: 120px;
        min-height: 40vh;
    }

    .services-page {
        padding: 0 20px 80px;
    }

    .sp-card {
        padding: 32px;
    }

    .sp-card-header h2 {
        font-size: 24px;
    }
}
