:root { --theme-green: #017839; }
.quality-list { display: grid; gap: 12px; }
.quality-item { background: #fff; border: 1px solid #e2e8f0; border-radius: 12px; padding: 14px 16px; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04); }
.policy-card { background: linear-gradient(135deg, #017839, #005f2d); color: #fff; border-radius: 14px; padding: 20px; box-shadow: 0 12px 32px rgba(1, 120, 57, 0.25); }
.policy-card ul { padding-left: 0; margin-bottom: 0; }
.policy-card li { list-style: none; }


/* Header Stilleri */
.kalite-header {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    height: 50vh;
    min-height: 300px;
    overflow: hidden;
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kalite-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.kalite-title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    text-align: center;
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.5);
    
}

.kalite-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 0;
}

.kalite-content p {
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1rem;
}
.cevre-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    padding: 2rem 0;
}

.cevre-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

.dokuman-kutulari {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    overflow: hidden;
}

.dokuman-kutu {
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    animation: slideInFromRight 0.6s ease-out forwards;
    opacity: 0;
}

@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.dokuman-kutu:hover {
    border-color: var(--theme-green);
    box-shadow: 0 8px 24px rgba(1, 120, 57, 0.15);
 
}

.dokuman-ikon {
    font-size: 2rem;
    line-height: 1;
}

.dokuman-adi {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0f1e26;
    flex: 1;
}

.dokuman-kutu:hover .dokuman-adi {
    color: var(--theme-green);
}


/* Dokümanlar sayfası: PNG kaldırıldı, liste tam genişlik ve alt alta uzun satırlar */
.dokumanlar-list-wrapper {
    width: 100%;
    max-width: 100%;
    margin-bottom: 2rem;
}

.dokumanlar-list-wrapper .dokuman-kutulari {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dokumanlar-list-wrapper .dokuman-kutu {
    padding: 1.25rem 1.75rem;
    min-height: 72px;
    gap: 1.5rem;
}

.dokumanlar-list-wrapper .dokuman-ikon {
    font-size: 2.25rem;
}

.dokumanlar-list-wrapper .dokuman-adi {
    font-size: 1.15rem;
    font-weight: 600;
}




/* Responsive */
@media (max-width: 991.98px) {
    .kalite-header {
        height: 40vh;
        min-height: 240px;
        margin-bottom: 2rem;
    }
    
    .kalite-title {
        font-size: 2.25rem;
    }
    
  
}

@media (max-width: 767.98px) {
    .kalite-header {
        height: 45vh;
        min-height: 260px;
    }
    
    .kalite-title {
        font-size: 1.75rem;
    }
    
    .kalite-content p {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }
    
    .cevre-logo-container {
        min-height: 300px;
        padding: 1rem 0;
    }
    
    .dokuman-kutu {
        padding: 1.25rem;
        gap: 1rem;
    }
    
    .dokuman-ikon {
        font-size: 1.75rem;
    }
    
    .dokuman-adi {
        font-size: 1rem;
    }
    
    .foto-overlap-wrapper {
        margin-top: 2rem;
    }
    
    .foto-1,
    .foto-2 {
        height: 300px;
    }

    .misyon-vizyon-section {
        padding: 2.5rem 1.75rem;
        border-radius: 14px;
    }

    .misyon-vizyon-item {
        flex-direction: column;
        gap: 0.75rem;
    }

    .mv-heading {
        flex: none;
        font-size: 1.05rem;
    }

    .mv-content {
        font-size: 0.98rem;
    }
}