.page-banner {
    background-color: #e552a0;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    height: 300px;
    display: flex; /* EKLENDİ */
    align-items: center; /* EKLENDİ */
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.banner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    width: 100%; /* EKLENDİ */
}

.banner-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px; /* 30px yerine 20px */
}

.banner-logo {
    height: 150px; /* 135px yerine 150px - DAHA BÜYÜK */
    width: auto;
    max-width: 350px; /* 300px yerine 350px */
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.banner-logo:hover {
    transform: scale(1.05);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /* padding-bottom: 155px; ← BU SATIR KALDIRILDI */
}

.breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #676767;
}

.separator {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 300;
}

.current-page {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Animasyon */
.banner-content {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media screen and (max-width: 768px) {
    .page-banner {
        padding: 60px 0;
        height: 250px; /* Mobilde biraz küçült */
    }
    
    .banner-logo {
        height: 120px;
        max-width: 280px;
    }
    
    .breadcrumb a,
    .current-page {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .page-banner {
        padding: 50px 0;
        height: 220px;
    }
    
    .banner-logo {
        height: 100px;
        max-width: 230px;
    }
    
    .breadcrumb {
        gap: 8px;
    }
    
    .breadcrumb a,
    .current-page {
        font-size: 0.9rem;
    }
    
    .separator {
        font-size: 1rem;
    }
}