.senat-page,
.senat-page * {
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

.senat-page {
    padding: 46px 32px 100px;
    background: linear-gradient(180deg, #f7f8fc 0%, #ffffff 14%);
}

.senat-page .content-block {
    max-width: 1150px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #eef1f8;
    border-radius: 18px;
    padding: 32px 36px;
    box-shadow: 0 10px 30px rgba(25, 44, 77, 0.05);
}

.senat-page .content-block.m-t-40 {
    margin-top: 26px;
}

.senat-page .content-block p {
    font-size: 16px;
    color: #6B7280;
    line-height: 1.8;
}

.senat-page .content-block h3 {
    position: relative;
    font-size: 20px;
    font-weight: 700;
    color: var(--navy, #171B2E);
    margin: 0 0 24px;
    padding-left: 14px;
}

.senat-page .content-block h3::before {
    content: "";
    position: absolute;
    left: 0; top: 3px; bottom: 3px;
    width: 4px;
    border-radius: 4px;
    background: var(--gold, #5B4CE0);
}

.senat-page .senat-leader-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.senat-page .senat-leader-card {
    background: #ffffff;
    border: 1px solid #E7E9EF;
    border-radius: 12px;
    padding: 26px;
    display: flex;
    align-items: center;
    gap: 22px;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.senat-page .senat-leader-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(25, 44, 77, 0.08);
    border-color: rgba(200, 121, 43, 0.25);
}

.senat-page .leader-photo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid var(--gold, #5B4CE0);
}

.senat-page .leader-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.senat-page .senat-leader-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy, #171B2E);
    margin-bottom: 6px;
}

.senat-page .leader-role {
    font-size: 13.5px;
    color: var(--gold, #5B4CE0);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.senat-page .senat-table-wrapper {
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid #E7E9EF;
}

.senat-page .senat-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.senat-page .senat-table thead th {
    background: var(--navy, #171B2E);
    color: #ffffff;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    padding: 16px 20px;
}

.senat-page .senat-table tbody td {
    padding: 15px 20px;
    font-size: 14.5px;
    color: #6B7280;
    border-top: 1px solid #edf2f7;
}

.senat-page .senat-table tbody tr:nth-child(even) {
    background: #f8fafc;
}

.senat-page .senat-table tbody tr:hover {
    background: #E4EFEB;
}

.senat-page .senat-table td:first-child {
    font-weight: 600;
    color: var(--navy, #171B2E);
    width: 60px;
}

@media (max-width: 768px) {
    .senat-page {
        padding: 34px 0 70px;
    }

    .senat-page .content-block {
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

    .senat-page .senat-leader-grid {
        grid-template-columns: 1fr;
    }

    .senat-page .senat-leader-card {
        flex-direction: column;
        text-align: center;
    }
}