.about-page {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.page-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1e3a8a;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 12px;
    margin: 10px 0 0;
}

.table-responsive {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    background: #ffffff;
}

.modern-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.modern-table th {
    background: #f8fafc;
    color: #1e3a8a;
    font-weight: 700;
    text-align: left;
    padding: 14px 18px;
    border-bottom: 2px solid #e2e8f0;
}

.modern-table td {
    padding: 14px 18px;
    border-bottom: 1px solid #f1f5f9;
    color: #334155;
    vertical-align: top;
}

.modern-table tr:last-child td {
    border-bottom: none;
}

.modern-table tbody tr:hover {
    background: #f8fafc;
}

.badge {
    display: inline-block;
    background: #eff6ff;
    color: #1d4ed8;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.85rem;
}

.pub-footer {
    background: #f8fafc;
    font-weight: 600;
}

.pub-footer a {
    color: #2563eb;
    word-break: break-all;
}

.pub-footer a:hover {
    text-decoration: underline;
}

.section-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.achievement-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
}

.achievement-card h2 {
    color: #1e3a8a;
    font-size: 1.25rem;
    margin: 0 0 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid #cbd5e1;
}

.modern-list {
    margin: 0;
    padding-left: 20px;
    line-height: 1.7;
    color: #334155;
}

.modern-list li {
    margin-bottom: 10px;
}

.modern-list li:last-child {
    margin-bottom: 0;
}

.modern-list a {
    color: #2563eb;
}

.modern-list a:hover {
    text-decoration: underline;
}

.grid-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px 24px;
}