.page-header {
    padding: 50px 0 30px;
}

.page-header h1 {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.docs-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 800px;
    padding-bottom: 80px;
}

.doc-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
}

.doc-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.doc-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.6);
}

.doc-icon svg {
    width: 22px;
    height: 22px;
}

.doc-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.doc-name {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.doc-type {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.doc-arrow {
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.2s ease, transform 0.2s ease;
}

.doc-arrow svg {
    width: 18px;
    height: 18px;
}

.doc-card:hover .doc-arrow {
    color: rgba(255, 255, 255, 0.7);
    transform: translateY(2px);
}

@media (max-width: 768px) {
    .page-header {
        padding: 30px 0 20px;
    }

    .page-header h1 {
        font-size: 24px;
    }

    .doc-card {
        padding: 16px 18px;
        gap: 14px;
    }

    .doc-name {
        font-size: 14px;
    }
}