body {
    font-family: Arial, sans-serif;
    padding-top: 45px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.wrap-main {
    max-width: 1200px;
    margin: 42px auto 0 auto;
    padding: 0 10px 40px 10px;
}

.block-accs {
    margin: 0 10px;
    width: auto;
    max-width: none;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    border-radius: 8px;
    box-shadow: 0 2px 14px 0 #dde3ee;
    padding: 36px 28px 38px 28px;
}

.block-accs img[alt="Banner"] {
    border-radius: 8px;
    box-shadow: 0 6px 30px #e6e9ef;
    margin-bottom: 28px;
    width: 100%;
    display: block;
    object-fit: cover;
}

.section-title {
    font-size: 23px;
    color: #2361e4;
    margin-bottom: 26px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.list-acc-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 10px;
    overflow: hidden;
    margin: 18px 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.list-acc-table th,
.list-acc-table td {
    border: 1px solid #dde3ee;
    padding: 10px 12px;
    text-align: center;
    vertical-align: middle;
}

.list-acc-table thead th {
    background: #f4f6fb;
    color: #222;
    font-weight: bold;
}

.list-acc-table tbody tr:nth-child(odd) {
    background: #fafbfe;
}

.list-acc-table tbody tr:hover {
    background: #e6eefc;
    transition: background 0.15s;
}

.badge {
    display: inline-block;
    border-radius: 14px !important;
    font-size: 15px;
    padding: 6px 18px;
    font-weight: 500;
}

.badge.bg-primary {
    background: #2067ee !important;
    color: #fff !important;
}

.badge.bg-secondary {
    background: #e2e8f5 !important;
    color: #456 !important;
}

.btn-sm {
    font-size: 15px;
    padding: 7px 18px;
    margin-right: 4px;
    margin-bottom: 3px;
    border-radius: 10px;
}

.btn-success.btn-sm {
    background: #1abc9c !important;
    border: none;
    color: #fff;
}

.btn-info.btn-sm {
    background: #218cff !important;
    border: none;
    color: #fff;
}

@media (max-width: 1000px) {
    .block-accs {
        padding: 18px 5px 19px 5px;
    }

    .list-acc-table {
        font-size: 15px;
    }
}

@media (max-width: 600px) {
    .wrap-main {
        padding: 0 1vw;
    }

    .block-accs {
        padding: 7px 0.5vw;
    }

    .section-title {
        font-size: 17px;
    }

    .list-acc-table {
        font-size: 13px;
        min-width: 800px;
        width: max-content;
    }

    .list-acc-table th,
    .list-acc-table td {
        padding: 10px 9px;
        font-size: 13px;
    }
}