/* =====================================
   SERVICE DETAIL — CENTERED LAYOUT (V6)
===================================== */

.service-detail-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 20px;
}

.service-detail-card {
    background: white;
    border-radius: 18px;
    padding: 30px;

    border: 4px solid transparent;
    background-image:
        linear-gradient(white, white),
        linear-gradient(90deg, #0ee92f, #14b8a6);
    background-origin: padding-box, border-box;
    background-clip: padding-box, border-box;

    box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}


/* =====================================
   RESİM — ORTADA, GENİŞ VE DENGELİ
===================================== */
.service-detail-img {
    width: 100%;
    text-align: center;
    margin: 0 auto 25px auto;
}

.service-detail-img img {
    max-width: 480px;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 14px;
}


/* =====================================
   BAŞLIK — ORTA HİZALI
===================================== */
.service-detail-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0d9488;
    text-align: center;
    margin-bottom: 12px;
}


/* =====================================
   KISA AÇIKLAMA — ORTA HİZALI
===================================== */
.service-detail-short {
    font-size: 1.1rem;
    color: #4b5563;
    text-align: center;
    margin-bottom: 18px;
}


/* =====================================
   UZUN AÇIKLAMA — RESMİN VE BAŞLIĞIN ALTINDA
===================================== */
.service-detail-description {
    font-size: 1.05rem;
    color: #374151;
    line-height: 1.75;
    margin-top: 20px;
    text-align: justify;
}


/* =====================================
   MOBİL
===================================== */
@media(max-width: 768px){

    .service-detail-img img {
        max-width: 100%;
    }

    .service-detail-title {
        font-size: 1.8rem;
    }

    .service-detail-short {
        font-size: 1rem;
    }

    .service-detail-description {
        text-align: left;
    }
}
