﻿.hizmet-kart {
    display: flex;
    flex-wrap: wrap;
    background: #eaf5ee;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(47, 122, 69, 0.1); /* Yumuşak yeşil tonlu */
    padding: 20px;
    margin: 20px auto;
    gap: 24px;
    align-items: flex-start;
    max-width: 1100px;
    width: 90%;
}

/* Sol taraf (resim ve başlık birlikte ortalanır) */
.hizmet-sol {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin: auto 0px;
}

.hizmet-logo {
    width: 100%;
    max-width: 240px;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    border: 3px solid #d4af37; /* Altın kenarlık */
    box-shadow: 0 0 10px rgba(0, 80, 0, 0.1);
}

/* ✅ Başlık logonun altına hizalandı */
.hizmet-baslik {
    font-size: 1.1rem;
    font-weight: 650;
    text-align: center;
    color: #2f7a45;
    margin-top: 8px;
    text-shadow: 0 1px 1px rgba(0,0,0,0.1);
}

/* Sağ taraf (içerik kutuları) */
.hizmet-sag {
    flex: 2 1 60%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .hizmet-sag div {
        background-color: #f4faf6;
        border-left: 4px solid #2f7a45;
        padding: 12px 16px;
        border-radius: 8px;
        font-size: 1rem;
        color: #1a2d1a;
        margin-bottom: 12px;
        border: 1px solid #d4af37;
        box-shadow: 0 2px 6px rgba(212, 175, 55, 0.1);
        transition: background 0.3s ease, transform 0.2s ease;
    }

        .hizmet-sag div:hover {
            background-color: #d9eee0;
            transform: scale(1.01);
        }

@media (max-width: 768px) {
    .hizmet-kart {
        align-items: center;
        text-align: center;
        margin: 0 auto 30px auto;
        padding: 20px;
        background-color: rgba(0, 255, 0, 0.05); /* Kapsayıcı alan - Yeşilimsi test */
    }

    .hizmet-sol {
        display: flex;
        flex-direction: column; /* ✅ resim ve başlığı alt alta dizer */
        align-items: center; /* ✅ ortalar */
        justify-content: center;
        padding: 0;
        margin: 0 auto;
        width: 100%;
       
    }

    .hizmet-logo {
        max-width: 200px;
        width: 100%;
        height: auto;
        object-fit: contain;
        border-radius: 12px;
        border: 3px solid #d4af37;
        margin: 0 auto;
    }

    .hizmet-baslik {
        font-size: 1.1rem;
        font-weight: 650;
        color: #2f7a45;
        margin: 8px 0 0 0;
        text-align: center; /* ✅ ortalı yazı */
      
    }

    .hizmet-sag {
        width: 100%;
        text-align: center;
        margin: 0 !important;
        padding: 0 !important;
        
    }

        
}
