.referans-list {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    overflow-x: auto;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.referans-table {
    width: 100%;
    border-collapse: collapse;
}

.referans-table th,
.referans-table td {
    text-align: left;
    padding: 12px;
    border-bottom: 1px solid #e5e7eb;
}

.referans-table th {
    background: #f5f7fa;
    color: #0a51b7;
    font-weight: 600;
}

.referans-table tr:hover {
    background: #f9fafb;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 24px 0 40px;
}

.page-btn {
    background: #fff;
    border: 1px solid #e5e7eb;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    color: #0a51b7;
    transition: all 0.2s;
}

.page-btn:hover {
    background: #f1f5ff;
    border-color: #0a51b7;
}

.page-btn.active {
    background: #0a51b7;
    color: #fff;
    border-color: #0a51b7;
}

/* === HERO BANNER (Referans Sayfası) === */
.hero-banner {
    position: relative;
    width: 100%;
    height: 350px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #e5e7eb;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    /* yarı saydam siyah overlay */
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-center {
    position: relative;
    text-align: center;
    color: #fff;
    z-index: 2;
}

.hero-center h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-center p {
    font-size: 18px;
    opacity: 0.9;
}

/* Küçük ekranlarda yükseklik ve font boyutlarını azalt */
@media (max-width: 768px) {
    .hero-banner {
        height: 240px;
    }

    .hero-center h1 {
        font-size: 26px;
    }

    .hero-center p {
        font-size: 15px;
    }
}